mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
7 lines
206 B
Ruby
7 lines
206 B
Ruby
|
class CreateSuggestedForIndex < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_index :topics, [:created_at, :visible],
|
||
|
where: "deleted_at IS NULL AND archetype <> 'private_message'"
|
||
|
end
|
||
|
end
|