2017-08-15 11:46:57 -04:00
|
|
|
class TopicSearchData < ActiveRecord::Base
|
|
|
|
include HasSearchData
|
|
|
|
end
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: topic_search_data
|
|
|
|
#
|
2017-08-16 10:38:11 -04:00
|
|
|
# topic_id :integer not null, primary key
|
|
|
|
# raw_data :text
|
2018-02-20 01:28:58 -05:00
|
|
|
# locale :string not null
|
2017-08-16 10:38:11 -04:00
|
|
|
# search_data :tsvector
|
|
|
|
# version :integer default(0)
|
2017-08-15 11:46:57 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# idx_search_topic (search_data)
|
|
|
|
#
|