add indexes to assit with front page

This commit is contained in:
Sam 2013-09-10 14:29:21 +10:00
parent 162d94aa02
commit 216ecaaffd

View File

@ -0,0 +1,8 @@
class IndexTopicsForFrontPage < ActiveRecord::Migration
def change
add_index :topics, [:deleted_at, :visible, :archetype, :id]
# covering index for join
add_index :topics, [:id, :deleted_at]
end
end