2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-15 17:46:57 +02: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
|
2019-01-11 14:29:56 -05:00
|
|
|
# locale :string not null
|
2017-08-16 10:38:11 -04:00
|
|
|
# search_data :tsvector
|
|
|
|
# version :integer default(0)
|
2017-08-15 17:46:57 +02:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2019-04-09 13:27:22 +08:00
|
|
|
# idx_search_topic (search_data) USING gin
|
|
|
|
# index_topic_search_data_on_topic_id_and_version_and_locale (topic_id,version,locale)
|
2017-08-15 17:46:57 +02:00
|
|
|
#
|