debian-mirror-gitlab/db/migrate/20220316022505_create_namespace_details.rb
2022-08-27 11:52:29 +05:30

22 lines
648 B
Ruby

# frozen_string_literal: true
class CreateNamespaceDetails < Gitlab::Database::Migration[2.0]
disable_ddl_transaction!
def up
with_lock_retries do
create_table :namespace_details, id: false do |t|
t.references :namespace, primary_key: true, null: false, default: nil, type: :bigint, index: false, foreign_key: { on_delete: :cascade } # rubocop:disable Layout/LineLength
t.timestamps_with_timezone null: true
t.integer :cached_markdown_version
t.text :description, limit: 255
t.text :description_html, limit: 255
end
end
end
def down
drop_table :namespace_details
end
end