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