mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
9a9ad9bda8
- Refactor model so it stores backfill query - Implement autobiographer - Remove sample badge - Correct featured badges to only include a badge once
19 lines
334 B
Ruby
19 lines
334 B
Ruby
class UserSearchData < ActiveRecord::Base
|
|
belongs_to :user
|
|
validates_presence_of :search_data
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: user_search_data
|
|
#
|
|
# user_id :integer not null, primary key
|
|
# search_data :tsvector
|
|
# raw_data :text
|
|
# locale :text
|
|
#
|
|
# Indexes
|
|
#
|
|
# idx_search_user (search_data)
|
|
#
|