20 lines
342 B
Ruby
20 lines
342 B
Ruby
class PostSearchData < ActiveRecord::Base
|
|
belongs_to :post
|
|
|
|
validates_presence_of :search_data
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: post_search_data
|
|
#
|
|
# post_id :integer not null, primary key
|
|
# search_data :tsvector
|
|
# raw_data :text
|
|
# locale :string(255)
|
|
#
|
|
# Indexes
|
|
#
|
|
# idx_search_post (search_data)
|
|
#
|