journalduhacker/app/indices/comment_index.rb
2014-01-07 05:52:29 -05:00

14 lines
351 B
Ruby

ThinkingSphinx::Index.define :comment, :with => :active_record do
indexes comment
indexes user.username, :as => :author
has "(cast(upvotes as signed) - cast(downvotes as signed))",
:as => :score, :type => :bigint, :sortable => true
has is_deleted
has created_at
where sanitize_sql(:is_deleted => false, :is_moderated => false)
end