Files
discourse/db/migrate/20150301224250_create_suggested_for_index.rb
2017-09-25 13:48:58 +08:00

7 lines
211 B
Ruby

class CreateSuggestedForIndex < ActiveRecord::Migration[4.2]
def change
add_index :topics, [:created_at, :visible],
where: "deleted_at IS NULL AND archetype <> 'private_message'"
end
end