2014-09-25 10:32:08 -05:00
|
|
|
class UserField < ActiveRecord::Base
|
2016-12-21 23:46:22 -06:00
|
|
|
|
|
|
|
include AnonCacheInvalidator
|
|
|
|
|
2014-10-02 14:56:28 -05:00
|
|
|
validates_presence_of :name, :description, :field_type
|
2015-07-28 11:29:40 -05:00
|
|
|
has_many :user_field_options, dependent: :destroy
|
|
|
|
accepts_nested_attributes_for :user_field_options
|
2015-02-23 12:02:30 -06:00
|
|
|
|
|
|
|
def self.max_length
|
|
|
|
2048
|
|
|
|
end
|
2014-09-25 10:32:08 -05:00
|
|
|
end
|
2014-11-19 21:53:15 -06:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_fields
|
|
|
|
#
|
2016-04-08 07:35:41 -05:00
|
|
|
# id :integer not null, primary key
|
2019-01-11 13:29:56 -06:00
|
|
|
# name :string not null
|
|
|
|
# field_type :string not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2016-04-08 07:35:41 -05:00
|
|
|
# editable :boolean default(FALSE), not null
|
2019-01-11 13:29:56 -06:00
|
|
|
# description :string not null
|
2016-04-08 07:35:41 -05:00
|
|
|
# required :boolean default(TRUE), not null
|
|
|
|
# show_on_profile :boolean default(FALSE), not null
|
|
|
|
# position :integer default(0)
|
2016-06-16 20:28:30 -05:00
|
|
|
# show_on_user_card :boolean default(FALSE), not null
|
2018-09-19 21:40:51 -05:00
|
|
|
# external_name :string
|
|
|
|
# external_type :string
|
2014-11-19 21:53:15 -06:00
|
|
|
#
|