From 0653e08efd039a5905f3fa4f6e9cef9f5d2f799c Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Mon, 20 Sep 2021 13:18:24 +0000 Subject: Add latest changes from gitlab-org/gitlab@14-3-stable-ee --- ..._add_agent_project_authorizations_foreign_keys.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 db/migrate/20210913010432_add_agent_project_authorizations_foreign_keys.rb (limited to 'db/migrate/20210913010432_add_agent_project_authorizations_foreign_keys.rb') diff --git a/db/migrate/20210913010432_add_agent_project_authorizations_foreign_keys.rb b/db/migrate/20210913010432_add_agent_project_authorizations_foreign_keys.rb new file mode 100644 index 00000000000..545fc125950 --- /dev/null +++ b/db/migrate/20210913010432_add_agent_project_authorizations_foreign_keys.rb @@ -0,0 +1,20 @@ +# 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 -- cgit v1.2.1