discourse/app/models/user_search_data.rb

19 lines
334 B
Ruby
Raw Normal View History

class UserSearchData < ActiveRecord::Base
belongs_to :user
validates_presence_of :search_data
end
2013-05-23 22:35:14 -04:00
# == Schema Information
#
# Table name: user_search_data
#
# user_id :integer not null, primary key
# search_data :tsvector
# raw_data :text
# locale :text
2013-05-23 22:35:14 -04:00
#
# Indexes
#
# idx_search_user (search_data)
#