2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-05-23 21:48:32 -05:00
|
|
|
class UserSearchData < ActiveRecord::Base
|
2017-08-15 10:46:57 -05:00
|
|
|
include HasSearchData
|
2013-05-23 21:48:32 -05:00
|
|
|
end
|
|
|
|
|
2013-05-23 21:35:14 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_search_data
|
|
|
|
#
|
|
|
|
# user_id :integer not null, primary key
|
|
|
|
# search_data :tsvector
|
2014-07-03 02:29:44 -05:00
|
|
|
# raw_data :text
|
|
|
|
# locale :text
|
2017-08-16 09:38:11 -05:00
|
|
|
# version :integer default(0)
|
2013-05-23 21:35:14 -05:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2018-07-16 01:18:07 -05:00
|
|
|
# idx_search_user (search_data) USING gin
|
2013-05-23 21:35:14 -05:00
|
|
|
#
|