2019-05-02 17:17:27 -05:00
# frozen_string_literal: true
2014-04-21 22:52:13 -05:00
class UserCustomField < ActiveRecord :: Base
belongs_to :user
2021-04-27 00:52:45 -05:00
scope :searchable , - > { joins ( " INNER JOIN user_fields ON user_fields.id = REPLACE(user_custom_fields.name, 'user_field_', '')::INTEGER AND user_fields.searchable IS TRUE AND user_custom_fields.name like 'user_field_%' " ) }
2014-04-21 22:52:13 -05:00
end
# == Schema Information
#
# Table name: user_custom_fields
#
# id :integer not null, primary key
# user_id :integer not null
# name :string(256) not null
# value :text
2014-08-27 00:19:25 -05:00
# created_at :datetime not null
# updated_at :datetime not null
2014-04-21 22:52:13 -05:00
#
# Indexes
#
2020-10-27 13:12:33 -05:00
# idx_user_custom_fields_last_reminded_at (name,user_id) UNIQUE WHERE ((name)::text = 'last_reminded_at'::text)
# idx_user_custom_fields_remind_assigns_frequency (name,user_id) UNIQUE WHERE ((name)::text = 'remind_assigns_frequency'::text)
# idx_user_custom_fields_user_notes_count (name,user_id) UNIQUE WHERE ((name)::text = 'user_notes_count'::text)
# index_user_custom_fields_on_user_id_and_name (user_id,name)
2014-04-21 22:52:13 -05:00
#