2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-04-21 23:52:13 -04:00
|
|
|
class UserCustomField < ActiveRecord::Base
|
2023-12-14 12:06:21 -05:00
|
|
|
include CustomField
|
|
|
|
|
2014-04-21 23:52:13 -04:00
|
|
|
belongs_to :user
|
2021-04-27 01:52:45 -04:00
|
|
|
|
|
|
|
scope :searchable,
|
2023-11-29 00:38:07 -05:00
|
|
|
-> do
|
2021-04-27 01:52:45 -04:00
|
|
|
joins(
|
2024-12-16 19:06:19 -05:00
|
|
|
"INNER JOIN user_fields ON user_fields.id = REPLACE(user_custom_fields.name, 'user_field_', '')::INTEGER",
|
|
|
|
).where("user_fields.searchable = TRUE").where(
|
|
|
|
"user_custom_fields.name ~ ?",
|
|
|
|
'^user_field_\\d+$',
|
2021-04-27 01:52:45 -04:00
|
|
|
)
|
2023-11-29 00:38:07 -05:00
|
|
|
end
|
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
|
|
|
|
#
|
2024-05-10 11:47:12 -04:00
|
|
|
# index_user_custom_fields_on_user_id_and_name (user_id,name)
|
2014-04-21 23:52:13 -04:00
|
|
|
#
|