2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/app/models/post_search_data.rb

18 lines
293 B
Ruby
Raw Normal View History

2013-05-24 12:35:14 +10:00
# == Schema Information
#
# Table name: post_search_data
#
# post_id :integer not null, primary key
# search_data :tsvector
#
# Indexes
#
# idx_search_post (search_data)
#
class PostSearchData < ActiveRecord::Base
belongs_to :post
validates_presence_of :search_data
end