mirror of
https://github.com/openSUSE/osem.git
synced 2026-04-26 17:58:34 -04:00
7 lines
145 B
Ruby
7 lines
145 B
Ruby
class DifficultyLevel < ActiveRecord::Base
|
|
belongs_to :program
|
|
has_many :events, dependent: :nullify
|
|
|
|
validates :title, presence: true
|
|
end
|