mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
9a9ad9bda8
- Refactor model so it stores backfill query - Implement autobiographer - Remove sample badge - Correct featured badges to only include a badge once
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)
|
|
#
|