mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:51:04 +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
351 B
Ruby
20 lines
351 B
Ruby
class CategorySearchData < ActiveRecord::Base
|
|
belongs_to :category
|
|
|
|
validates_presence_of :search_data
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: category_search_data
|
|
#
|
|
# category_id :integer not null, primary key
|
|
# search_data :tsvector
|
|
# raw_data :text
|
|
# locale :text
|
|
#
|
|
# Indexes
|
|
#
|
|
# idx_search_category (search_data)
|
|
#
|