discourse/app/models/post_search_data.rb

20 lines
337 B
Ruby
Raw Normal View History

class PostSearchData < ActiveRecord::Base
belongs_to :post
validates_presence_of :search_data
end
2013-05-23 22:35:14 -04:00
# == Schema Information
#
# Table name: post_search_data
#
# post_id :integer not null, primary key
# search_data :tsvector
# raw_data :text
2016-02-22 18:33:53 -05:00
# locale :string
2013-05-23 22:35:14 -04:00
#
# Indexes
#
# idx_search_post (search_data)
#