summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210824102750_add_project_namespace_foreign_key_to_project.rb
blob: 5cb42fd61a74aa4abb2ed283f7891a67e1661afb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class AddProjectNamespaceForeignKeyToProject < ActiveRecord::Migration[6.1]
  include Gitlab::Database::MigrationHelpers

  disable_ddl_transaction!

  TARGET_COLUMN = :project_namespace_id

  def up
    add_concurrent_foreign_key :projects, :namespaces, column: TARGET_COLUMN, on_delete: :cascade
  end

  def down
    with_lock_retries do
      remove_foreign_key_if_exists(:projects, column: TARGET_COLUMN)
    end
  end
end