gitlab-org--gitlab-foss/db/migrate/20210913010432_add_agent_pr...

21 lines
605 B
Ruby

# frozen_string_literal: true
class AddAgentProjectAuthorizationsForeignKeys < Gitlab::Database::Migration[1.0]
disable_ddl_transaction!
def up
add_concurrent_foreign_key :agent_project_authorizations, :projects, column: :project_id
add_concurrent_foreign_key :agent_project_authorizations, :cluster_agents, column: :agent_id
end
def down
with_lock_retries do
remove_foreign_key_if_exists :agent_project_authorizations, column: :project_id
end
with_lock_retries do
remove_foreign_key_if_exists :agent_project_authorizations, column: :agent_id
end
end
end