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.rb7
1 files changed, 6 insertions, 1 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
index f922ed209aa..70fb0ef12f9 100644
--- 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
@@ -5,8 +5,13 @@ class AddIndexToLabelsForTitleAndProject < ActiveRecord::Migration
disable_ddl_transaction!
- def change
+ 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