discourse/app/models/post_search_data.rb

19 lines
358 B
Ruby
Raw Normal View History

class PostSearchData < ActiveRecord::Base
include HasSearchData
end
2013-05-24 10:35:14 +08:00
# == Schema Information
#
# Table name: post_search_data
#
# post_id :integer not null, primary key
# search_data :tsvector
# raw_data :text
2018-02-20 14:28:58 +08:00
# locale :string
# version :integer default(0)
2013-05-24 10:35:14 +08:00
#
# Indexes
#
2018-07-16 14:18:07 +08:00
# idx_search_post (search_data) USING gin
2013-05-24 10:35:14 +08:00
#