mirror of
https://github.com/openSUSE/osem.git
synced 2026-02-07 04:31:00 -05:00
9 lines
191 B
Ruby
9 lines
191 B
Ruby
class DifficultyLevel < ActiveRecord::Base
|
|
attr_accessible :title, :description, :color, :conference_id
|
|
|
|
belongs_to :conference
|
|
has_many :events
|
|
|
|
validates :title, presence: true
|
|
end
|