debian-mirror-gitlab/db/migrate/20230420012220_create_organizations.rb
2023-07-09 08:55:56 +05:30

9 lines
207 B
Ruby

# 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