clarion/app/models/workshop.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
121 B
Ruby

class Workshop < Event
validates :length, numericality: {greater_than_or_equal_to: 30, less_than_or_equal_to: 120}
end