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/migrate/20201203171631_add_index_to_domain.rb')
-rw-r--r--db/migrate/20201203171631_add_index_to_domain.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20201203171631_add_index_to_domain.rb b/db/migrate/20201203171631_add_index_to_domain.rb
deleted file mode 100644
index dc7b9539e95..00000000000
--- a/db/migrate/20201203171631_add_index_to_domain.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class AddIndexToDomain < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
- DOWNTIME = false
- INDEX_NAME = 'index_alert_management_alerts_on_domain'
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index :alert_management_alerts, :domain, name: INDEX_NAME
- end
-
- def down
- remove_concurrent_index :alert_management_alerts, :domain, name: INDEX_NAME
- end
-end