summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220112230642_remove_projects_ci_unit_tests_project_id_fk.rb
blob: 9ad90a3a7a07e8031b6b47d46e70445ff0d83493 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

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

  def up
    with_lock_retries do
      remove_foreign_key_if_exists(:ci_unit_tests, :projects, name: "fk_7a8fabf0a8")
    end
  end

  def down
    add_concurrent_foreign_key(:ci_unit_tests, :projects, name: "fk_7a8fabf0a8", column: :project_id, target_column: :id, on_delete: "cascade")
  end
end