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-11 12:19:23 -05:00
# locale :string(255) not null
# search_data :tsvector
# version :integer default(0)
#
# Indexes
#
2018-07-16 02:18:07 -04:00
# idx_search_topic (search_data) USING gin
#