2014-09-25 11:32:08 -04:00
|
|
|
class UserField < ActiveRecord::Base
|
2014-10-02 15:56:28 -04:00
|
|
|
validates_presence_of :name, :description, :field_type
|
2014-09-25 11:32:08 -04:00
|
|
|
end
|
2014-11-19 22:53:15 -05:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_fields
|
|
|
|
#
|
2015-02-04 00:34:25 -05:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# name :string(255) not null
|
|
|
|
# field_type :string(255) not null
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# editable :boolean default(FALSE), not null
|
|
|
|
# description :string(255) not null
|
|
|
|
# required :boolean default(TRUE), not null
|
|
|
|
# show_on_profile :boolean default(FALSE), not null
|
2014-11-19 22:53:15 -05:00
|
|
|
#
|