summaryrefslogtreecommitdiff
path: root/db/post_migrate/20221216150304_add_foreign_key_to_ci_build_pending_state.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20221216150304_add_foreign_key_to_ci_build_pending_state.rb')
-rw-r--r--db/post_migrate/20221216150304_add_foreign_key_to_ci_build_pending_state.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/db/post_migrate/20221216150304_add_foreign_key_to_ci_build_pending_state.rb b/db/post_migrate/20221216150304_add_foreign_key_to_ci_build_pending_state.rb
new file mode 100644
index 00000000000..ef9ecc3033f
--- /dev/null
+++ b/db/post_migrate/20221216150304_add_foreign_key_to_ci_build_pending_state.rb
@@ -0,0 +1,30 @@
+# frozen_string_literal: true
+
+class AddForeignKeyToCiBuildPendingState < Gitlab::Database::Migration[2.1]
+ disable_ddl_transaction!
+
+ SOURCE_TABLE_NAME = :ci_build_pending_states
+ TARGET_TABLE_NAME = :ci_builds
+ COLUMN = :build_id
+ TARGET_COLUMN = :id
+ FK_NAME = :fk_rails_0bbbfeaf9d_p
+ PARTITION_COLUMN = :partition_id
+
+ def up
+ add_concurrent_foreign_key(
+ SOURCE_TABLE_NAME,
+ TARGET_TABLE_NAME,
+ column: [PARTITION_COLUMN, COLUMN],
+ target_column: [PARTITION_COLUMN, TARGET_COLUMN],
+ validate: false,
+ reverse_lock_order: true,
+ name: FK_NAME
+ )
+ end
+
+ def down
+ with_lock_retries do
+ remove_foreign_key_if_exists(SOURCE_TABLE_NAME, name: FK_NAME)
+ end
+ end
+end