osem-fcy/app/models/difficulty_level.rb

9 lines
191 B
Ruby
Raw Normal View History

2014-02-23 16:09:09 +02:00
class DifficultyLevel < ActiveRecord::Base
2014-08-12 11:51:59 +03:00
attr_accessible :title, :description, :color, :conference_id
2014-02-23 16:09:09 +02:00
belongs_to :conference
has_many :events
2014-07-21 14:49:05 +02:00
validates :title, presence: true
2014-06-30 17:07:53 +02:00
end