summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220326161803_add_cascade_delete_fk_on_project_namespace_id.rb
blob: 005532c53d967f3dedb256930879a597c1392216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# frozen_string_literal: true

class AddCascadeDeleteFkOnProjectNamespaceId < Gitlab::Database::Migration[1.0]
  disable_ddl_transaction!

  TARGET_COLUMN = :project_namespace_id

  def up
    # add the new FK before removing the old one
    add_concurrent_foreign_key(
      :projects,
      :namespaces,
      column: TARGET_COLUMN,
      name: fk_name("#{TARGET_COLUMN}_new"),
      on_delete: :cascade
    )

    with_lock_retries do
      remove_foreign_key_if_exists(:projects, column: TARGET_COLUMN, name: fk_name(TARGET_COLUMN))
    end
  end

  def down
    add_concurrent_foreign_key(
      :projects,
      :namespaces,
      column: TARGET_COLUMN,
      name: fk_name(TARGET_COLUMN),
      on_delete: :nullify
    )

    with_lock_retries do
      remove_foreign_key_if_exists(:projects, column: TARGET_COLUMN, name: fk_name("#{TARGET_COLUMN}_new"))
    end
  end

  def fk_name(column_name)
    # generate a FK name
    concurrent_foreign_key_name(:projects, column_name)
  end
end