discourse/app/models/topic_search_data.rb

19 lines
380 B
Ruby
Raw Normal View History

class TopicSearchData < ActiveRecord::Base
include HasSearchData
end
# == Schema Information
#
# Table name: topic_search_data
#
# topic_id :integer not null, primary key
# raw_data :text
2019-01-12 03:29:56 +08:00
# locale :string not null
# search_data :tsvector
# version :integer default(0)
#
# Indexes
#
2018-07-16 14:18:07 +08:00
# idx_search_topic (search_data) USING gin
#