mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:30:26 -06:00
9 lines
216 B
Ruby
9 lines
216 B
Ruby
|
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
|