mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05: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
|