summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220121214752_remove_projects_ci_stages_project_id_fk.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-05 01:22:57 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-05 01:22:57 +0000
commit7fa016711e540f9b6dda45aa1f47867737c52940 (patch)
tree545fa4ba39a17df75301c6c90d7aef1e77cba98d /db/post_migrate/20220121214752_remove_projects_ci_stages_project_id_fk.rb
parentee3c8d00bd8c17201da0b116a9b3b276804b855f (diff)
downloadgitlab-ce-7fa016711e540f9b6dda45aa1f47867737c52940.tar.gz
Add latest changes from gitlab-org/gitlab@15-11-stable-ee
Diffstat (limited to 'db/post_migrate/20220121214752_remove_projects_ci_stages_project_id_fk.rb')
-rw-r--r--db/post_migrate/20220121214752_remove_projects_ci_stages_project_id_fk.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/db/post_migrate/20220121214752_remove_projects_ci_stages_project_id_fk.rb b/db/post_migrate/20220121214752_remove_projects_ci_stages_project_id_fk.rb
new file mode 100644
index 00000000000..93f0b30571a
--- /dev/null
+++ b/db/post_migrate/20220121214752_remove_projects_ci_stages_project_id_fk.rb
@@ -0,0 +1,20 @@
+# frozen_string_literal: true
+
+class RemoveProjectsCiStagesProjectIdFk < Gitlab::Database::Migration[1.0]
+ disable_ddl_transaction!
+
+ def up
+ return if Gitlab.com? # unsafe migration, skip on GitLab.com due to https://gitlab.com/groups/gitlab-org/-/epics/7249#note_819625526
+ 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
+ add_concurrent_foreign_key(:ci_stages, :projects, name: "fk_2360681d1d", column: :project_id, target_column: :id, on_delete: :cascade)
+ end
+end