summaryrefslogtreecommitdiff
path: root/db/migrate/20210214205155_add_index_to_namespaces_delayed_project_removal.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210214205155_add_index_to_namespaces_delayed_project_removal.rb')
-rw-r--r--db/migrate/20210214205155_add_index_to_namespaces_delayed_project_removal.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/db/migrate/20210214205155_add_index_to_namespaces_delayed_project_removal.rb b/db/migrate/20210214205155_add_index_to_namespaces_delayed_project_removal.rb
deleted file mode 100644
index 8d09a5c9269..00000000000
--- a/db/migrate/20210214205155_add_index_to_namespaces_delayed_project_removal.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-class AddIndexToNamespacesDelayedProjectRemoval < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
- INDEX_NAME = 'tmp_idx_on_namespaces_delayed_project_removal'
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index :namespaces, :id, name: INDEX_NAME, where: 'delayed_project_removal = TRUE'
- end
-
- def down
- remove_concurrent_index_by_name :namespaces, INDEX_NAME
- end
-end