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