mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:11:08 -06:00
9 lines
221 B
Ruby
9 lines
221 B
Ruby
class IndexTopicsForFrontPage < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :topics, [:deleted_at, :visible, :archetype, :id]
|
|
# covering index for join
|
|
add_index :topics, [:id, :deleted_at]
|
|
end
|
|
|
|
end
|