clarion/app/models/lecture.rb
Petko Bordjukov 89de56d94d Add an initial implementation of the Event model
Initial implementation & specs of the Event model and its children
2014-08-10 21:18:41 +03:00

4 lines
119 B
Ruby

class Lecture < Event
validates :length, numericality: {greater_than_or_equal_to: 40, less_than_or_equal_to: 45}
end