debian-mirror-gitlab/db/migrate/20230420012220_create_organizations.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
207 B
Ruby
Raw Normal View History

2023-07-09 08:55:56 +05:30
# 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