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