summaryrefslogtreecommitdiff
path: root/db/migrate/20210401134455_remove_index_mirror_data_on_next_execution_and_retry_count.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210401134455_remove_index_mirror_data_on_next_execution_and_retry_count.rb')
-rw-r--r--db/migrate/20210401134455_remove_index_mirror_data_on_next_execution_and_retry_count.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/db/migrate/20210401134455_remove_index_mirror_data_on_next_execution_and_retry_count.rb b/db/migrate/20210401134455_remove_index_mirror_data_on_next_execution_and_retry_count.rb
deleted file mode 100644
index ee59e72e398..00000000000
--- a/db/migrate/20210401134455_remove_index_mirror_data_on_next_execution_and_retry_count.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-# frozen_string_literal: true
-
-# See https://docs.gitlab.com/ee/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class RemoveIndexMirrorDataOnNextExecutionAndRetryCount < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- disable_ddl_transaction!
-
- DOWNTIME = false
-
- INDEX_NAME = 'index_mirror_data_on_next_execution_and_retry_count'
-
- def up
- remove_concurrent_index(
- :project_mirror_data,
- %i[next_execution_timestamp retry_count],
- name: INDEX_NAME
- )
- end
-
- def down
- add_concurrent_index(
- :project_mirror_data,
- %i[next_execution_timestamp retry_count],
- name: INDEX_NAME
- )
- end
-end