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 'lib/gitlab/background_migration/cleanup_concurrent_type_change.rb')
-rw-r--r--lib/gitlab/background_migration/cleanup_concurrent_type_change.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/gitlab/background_migration/cleanup_concurrent_type_change.rb b/lib/gitlab/background_migration/cleanup_concurrent_type_change.rb
deleted file mode 100644
index 48411095dbb..00000000000
--- a/lib/gitlab/background_migration/cleanup_concurrent_type_change.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module BackgroundMigration
- # Background migration for cleaning up a concurrent column type changeb.
- class CleanupConcurrentTypeChange < CleanupConcurrentSchemaChange
- RESCHEDULE_DELAY = 10.minutes
-
- def cleanup_concurrent_schema_change(table, old_column, new_column)
- cleanup_concurrent_column_type_change(table, old_column)
- end
- end
- end
-end