summaryrefslogtreecommitdiff
path: root/db/migrate/20200703124823_create_namespace_settings.rb
blob: 907b9d2ca8c563dbe1b1f1709cb696b2fdd72db9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

class CreateNamespaceSettings < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    with_lock_retries do
      create_table :namespace_settings, id: false do |t|
        t.timestamps_with_timezone null: false
        t.references :namespace, primary_key: true, default: nil, type: :integer, index: false, foreign_key: { on_delete: :cascade }
      end
    end
  end

  def down
    drop_table :namespace_settings
  end
end