Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20230302123258_drop_runner_machines_constraint_on_ci_builds_metadata.rb')
-rw-r--r--db/post_migrate/20230302123258_drop_runner_machines_constraint_on_ci_builds_metadata.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/db/post_migrate/20230302123258_drop_runner_machines_constraint_on_ci_builds_metadata.rb b/db/post_migrate/20230302123258_drop_runner_machines_constraint_on_ci_builds_metadata.rb
new file mode 100644
index 00000000000..c8f1b3be9bd
--- /dev/null
+++ b/db/post_migrate/20230302123258_drop_runner_machines_constraint_on_ci_builds_metadata.rb
@@ -0,0 +1,27 @@
+# frozen_string_literal: true
+
+class DropRunnerMachinesConstraintOnCiBuildsMetadata < Gitlab::Database::Migration[2.1]
+ disable_ddl_transaction!
+
+ SOURCE_TABLE_NAME = 'p_ci_builds_metadata'
+ TARGET_TABLE_NAME = 'ci_runner_machines'
+ CONSTRAINT_NAME = 'fk_rails_fae01b2700'
+
+ def up
+ with_lock_retries(raise_on_exhaustion: true) do
+ remove_foreign_key_if_exists(SOURCE_TABLE_NAME, TARGET_TABLE_NAME, name: CONSTRAINT_NAME)
+ end
+ end
+
+ def down
+ with_lock_retries(raise_on_exhaustion: true) do
+ next if check_constraint_exists?(SOURCE_TABLE_NAME, CONSTRAINT_NAME)
+
+ execute(<<~SQL)
+ ALTER TABLE #{SOURCE_TABLE_NAME}
+ ADD CONSTRAINT #{CONSTRAINT_NAME} FOREIGN KEY (runner_machine_id)
+ REFERENCES #{TARGET_TABLE_NAME}(id) ON DELETE SET NULL
+ SQL
+ end
+ end
+end