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/20230119095025_remove_fk_to_ci_builds_ci_builds_runner_session_on_build_id.rb')
-rw-r--r--db/post_migrate/20230119095025_remove_fk_to_ci_builds_ci_builds_runner_session_on_build_id.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/db/post_migrate/20230119095025_remove_fk_to_ci_builds_ci_builds_runner_session_on_build_id.rb b/db/post_migrate/20230119095025_remove_fk_to_ci_builds_ci_builds_runner_session_on_build_id.rb
deleted file mode 100644
index 0707114d3a5..00000000000
--- a/db/post_migrate/20230119095025_remove_fk_to_ci_builds_ci_builds_runner_session_on_build_id.rb
+++ /dev/null
@@ -1,35 +0,0 @@
-# frozen_string_literal: true
-
-class RemoveFkToCiBuildsCiBuildsRunnerSessionOnBuildId < Gitlab::Database::Migration[2.1]
- disable_ddl_transaction!
-
- SOURCE_TABLE_NAME = :ci_builds_runner_session
- TARGET_TABLE_NAME = :ci_builds
- COLUMN = :build_id
- TARGET_COLUMN = :id
- FK_NAME = :fk_rails_70707857d3
-
- def up
- with_lock_retries do
- remove_foreign_key_if_exists(
- SOURCE_TABLE_NAME,
- TARGET_TABLE_NAME,
- name: FK_NAME,
- reverse_lock_order: true
- )
- end
- end
-
- def down
- add_concurrent_foreign_key(
- SOURCE_TABLE_NAME,
- TARGET_TABLE_NAME,
- column: COLUMN,
- target_column: TARGET_COLUMN,
- validate: true,
- reverse_lock_order: true,
- on_delete: :cascade,
- name: FK_NAME
- )
- end
-end