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/20170204181513_add_index_to_labels_for_type_and_project.rb')
-rw-r--r--db/migrate/20170204181513_add_index_to_labels_for_type_and_project.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/db/migrate/20170204181513_add_index_to_labels_for_type_and_project.rb b/db/migrate/20170204181513_add_index_to_labels_for_type_and_project.rb
deleted file mode 100644
index 746322885b1..00000000000
--- a/db/migrate/20170204181513_add_index_to_labels_for_type_and_project.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# rubocop:disable RemoveIndex
-class AddIndexToLabelsForTypeAndProject < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index :labels, [:type, :project_id]
- end
-
- def down
- remove_index :labels, [:type, :project_id] if index_exists? :labels, [:type, :project_id]
- end
-end