summaryrefslogtreecommitdiff
path: root/db/migrate/20170210062829_add_index_to_labels_for_title_and_project.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170210062829_add_index_to_labels_for_title_and_project.rb')
-rw-r--r--db/migrate/20170210062829_add_index_to_labels_for_title_and_project.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/db/migrate/20170210062829_add_index_to_labels_for_title_and_project.rb b/db/migrate/20170210062829_add_index_to_labels_for_title_and_project.rb
deleted file mode 100644
index d0b440b8ccb..00000000000
--- a/db/migrate/20170210062829_add_index_to_labels_for_title_and_project.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# rubocop:disable RemoveIndex
-class AddIndexToLabelsForTitleAndProject < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index :labels, :title
- add_concurrent_index :labels, :project_id
- end
-
- def down
- remove_index :labels, :title if index_exists? :labels, :title
- remove_index :labels, :project_id if index_exists? :labels, :project_id
- end
-end