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/20210831123008_drop_temporary_trigger_for_ci_sources_pipelines.rb')
-rw-r--r--db/post_migrate/20210831123008_drop_temporary_trigger_for_ci_sources_pipelines.rb28
1 files changed, 0 insertions, 28 deletions
diff --git a/db/post_migrate/20210831123008_drop_temporary_trigger_for_ci_sources_pipelines.rb b/db/post_migrate/20210831123008_drop_temporary_trigger_for_ci_sources_pipelines.rb
deleted file mode 100644
index a3fe0e6bd7a..00000000000
--- a/db/post_migrate/20210831123008_drop_temporary_trigger_for_ci_sources_pipelines.rb
+++ /dev/null
@@ -1,28 +0,0 @@
-# frozen_string_literal: true
-
-class DropTemporaryTriggerForCiSourcesPipelines < Gitlab::Database::Migration[1.0]
- disable_ddl_transaction!
-
- TABLE = 'ci_sources_pipelines'
- TEMPORARY_COLUMN = 'source_job_id_convert_to_bigint'
- MAIN_COLUMN = 'source_job_id'
- TRIGGER = 'trigger_8485e97c00e3'
-
- # rubocop:disable Migration/WithLockRetriesDisallowedMethod
- def up
- check_trigger_permissions!(TABLE)
-
- with_lock_retries do
- remove_rename_triggers(TABLE, TRIGGER)
- end
- end
-
- def down
- check_trigger_permissions!(TABLE)
-
- with_lock_retries do
- install_rename_triggers(TABLE, MAIN_COLUMN, TEMPORARY_COLUMN, trigger_name: TRIGGER)
- end
- end
- # rubocop:enable Migration/WithLockRetriesDisallowedMethod
-end