debian-mirror-gitlab/db/post_migrate/20220121214753_re_remove_projects_ci_stages_project_id_fk.rb
2022-04-04 11:22:00 +05:30

20 lines
533 B
Ruby

# frozen_string_literal: true
class ReRemoveProjectsCiStagesProjectIdFk < Gitlab::Database::Migration[1.0]
disable_ddl_transaction!
def up
return unless foreign_key_exists?(:ci_stages, :projects, name: "fk_2360681d1d")
with_lock_retries do
execute('LOCK projects, ci_stages IN ACCESS EXCLUSIVE MODE') if transaction_open?
remove_foreign_key_if_exists(:ci_stages, :projects, name: "fk_2360681d1d")
end
end
def down
# no-op, since the FK will be added via rollback by prior-migration
end
end