1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
discourse/db/migrate/20150301224250_create_suggested_for_index.rb

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