discourse/app/models/post_search_data.rb
Sam 9a9ad9bda8 FEATURE: Badge progress
- Refactor model so it stores backfill query
- Implement autobiographer
- Remove sample badge
- Correct featured badges to only include a badge once
2014-07-03 17:29:44 +10:00

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)
#