summaryrefslogtreecommitdiff
path: root/db/migrate/20220316022505_create_namespace_details.rb
blob: 6df8606c7264479cea72fae234c9c6c760bbd1a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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