2019-05-02 18:17:27 -04:00
# frozen_string_literal: true
2014-04-21 23:52:13 -04:00
class UserCustomField < ActiveRecord :: Base
belongs_to :user
2021-04-27 01:52:45 -04:00
2023-01-09 07:20:10 -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 23:52:13 -04: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 01:19:25 -04:00
# created_at :datetime not null
# updated_at :datetime not null
2014-04-21 23:52:13 -04:00
#
# Indexes
#
2021-07-05 18:14:15 -04:00
# index_user_custom_fields_on_user_id_and_name (user_id,name)
2014-04-21 23:52:13 -04:00
#