2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
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
|
|
|
|
#
|
2020-08-20 23:36:53 -04:00
|
|
|
# post_id :integer not null, primary key
|
|
|
|
# search_data :tsvector
|
|
|
|
# raw_data :text
|
|
|
|
# locale :string
|
|
|
|
# version :integer default(0)
|
|
|
|
# private_message :boolean not null
|
2013-05-23 22:35:14 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2019-04-09 01:27:22 -04: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 22:35:14 -04:00
|
|
|
#
|