Add index on topic_links post_id. Remove a redundant index.

This commit is contained in:
Neil Lalonde 2014-06-17 17:01:13 -04:00
parent f9e80e1eb2
commit 5f94c29ada
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
class AddAndRemoveIndexesOnTopicLinks < ActiveRecord::Migration
def up
# Index (topic_id) is a subset of (topic_id, post_id, url)
remove_index :topic_links, :topic_id
add_index :topic_links, :post_id
end
def down
remove_index :topic_links, :post_id
add_index :topic_links, :topic_id
end
end