2013-05-23 22:48:32 -04:00
|
|
|
class PostSearchData < ActiveRecord::Base
|
2017-08-15 11:46:57 -04:00
|
|
|
include HasSearchData
|
2013-05-23 22:48:32 -04:00
|
|
|
end
|
|
|
|
|
2013-05-23 22:35:14 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: post_search_data
|
|
|
|
#
|
|
|
|
# post_id :integer not null, primary key
|
|
|
|
# search_data :tsvector
|
2014-07-03 03:29:44 -04:00
|
|
|
# raw_data :text
|
2019-01-11 14:29:56 -05:00
|
|
|
# locale :string
|
2017-08-16 10:38:11 -04:00
|
|
|
# version :integer default(0)
|
2013-05-23 22:35:14 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2018-07-16 02:18:07 -04:00
|
|
|
# idx_search_post (search_data) USING gin
|
2013-05-23 22:35:14 -04:00
|
|
|
#
|