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