summaryrefslogtreecommitdiff
path: root/vendor/plugins/thinking-sphinx/features/support/models/comment.rb
blob: a93451c4fbae363c7f504be879171f9fee6e3abd (plain)
1
2
3
4
5
6
7
8
9
10
class Comment < ActiveRecord::Base
  belongs_to :post
  belongs_to :category
  
  define_index do 
    indexes :content
    
    has category.name, :facet => true, :as => :category_name, :type => :string
  end
end