summaryrefslogtreecommitdiff
path: root/vendor/plugins/thinking-sphinx/features/support/models/post.rb
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2009-04-28 00:15:53 +0200
committerhukl <contact@smyck.org>2009-05-01 17:14:02 +0200
commit4bd16f053847f2efe347ebda9136ef2233ee0d2c (patch)
treef4c11f89455de991c8d87726d5757b752e7129e2 /vendor/plugins/thinking-sphinx/features/support/models/post.rb
parentd3a9b46ba5c863a0ff377dcffae9a494fe476e02 (diff)
added thinking_sphinx plugin for fulltext search on nodes and heads
Diffstat (limited to 'vendor/plugins/thinking-sphinx/features/support/models/post.rb')
-rw-r--r--vendor/plugins/thinking-sphinx/features/support/models/post.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/vendor/plugins/thinking-sphinx/features/support/models/post.rb b/vendor/plugins/thinking-sphinx/features/support/models/post.rb
new file mode 100644
index 0000000..430d17c
--- /dev/null
+++ b/vendor/plugins/thinking-sphinx/features/support/models/post.rb
@@ -0,0 +1,16 @@
1class Post < ActiveRecord::Base
2 has_many :comments, :dependent => :destroy
3 has_many :taggings, :as => :taggable
4 has_many :tags, :through => :taggings
5 belongs_to :category
6
7 define_index do
8 indexes subject
9 indexes content
10 indexes tags.text, :as => :tags
11 indexes comments.content, :as => :comments
12
13 has comments(:id), :as => :comment_ids, :source => :ranged_query
14 has category.name, :facet => true, :as => :category_name, :type => :string
15 end
16end