discourse/app/models/user_field.rb

23 lines
633 B
Ruby
Raw Normal View History

class UserField < ActiveRecord::Base
validates_presence_of :name, :description, :field_type
def self.max_length
2048
end
end
# == 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
#