Guest User

Untitled

a guest
Feb 20th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. class Story < ActiveRecord::Base
  2.  
  3. # FULLTEXT INDEXING
  4. is_indexed :fields => [
  5. {:field => 'title', :sortable => true},
  6. :content, :teaser, :category_id
  7. ],
  8. :include => [
  9. {:association_name => 'category', :field => 'name', :as => 'category_name'},
  10. {:association_name => 'category', :field => 'parent_id'}
  11. ]
  12.  
  13. end
Add Comment
Please, Sign In to add comment