summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220106235626_remove_foreign_key_ci_runner_namespaces_namespace_id.rb
blob: 61ca066401e43b7687b814ee0adc9a04c99df342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

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

  CONSTRAINT_NAME = 'fk_rails_f9d9ed3308'

  def up
    with_lock_retries do
      remove_foreign_key_if_exists(:ci_runner_namespaces, :namespaces, name: CONSTRAINT_NAME)
    end
  end

  def down
    add_concurrent_foreign_key :ci_runner_namespaces, :namespaces, column: :namespace_id, on_delete: :cascade, name: CONSTRAINT_NAME
  end
end