summaryrefslogtreecommitdiff
path: root/db/migrate/20230420012220_create_organizations.rb
blob: ba6e89837d8eab1d48f42e7f85c465ad69e1c7db (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class CreateOrganizations < Gitlab::Database::Migration[2.1]
  def change
    create_table :organizations do |t|
      t.timestamps_with_timezone null: false
    end
  end
end