2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00
discourse/app/models/user_field.rb

18 lines
501 B
Ruby
Raw Normal View History

class UserField < ActiveRecord::Base
validates_presence_of :name, :description, :field_type
end
# == Schema Information
#
# Table name: user_fields
#
# 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
#