mirror of
https://github.com/openSUSE/osem.git
synced 2026-02-05 03:31:07 -05: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
|