PERF: Add score indexes for top topics.

This commit is contained in:
Guo Xiang Tan 2016-11-24 10:11:39 +08:00
parent 4efb3069e2
commit 1867442fbc

View File

@ -0,0 +1,9 @@
class AddScoresIndexesToTopTopics < ActiveRecord::Migration
def change
add_index :top_topics, :daily_score
add_index :top_topics, :weekly_score
add_index :top_topics, :monthly_score
add_index :top_topics, :yearly_score
add_index :top_topics, :all_score
end
end