Remove old Lecture and Workshop models

We won't be using STI anymore for the events
This commit is contained in:
Petko Bordjukov 2014-11-05 11:47:08 +02:00
parent fac65a167a
commit cf953bd853
2 changed files with 0 additions and 6 deletions

View File

@ -1,3 +0,0 @@
class Lecture < Event
validates :length, numericality: {greater_than_or_equal_to: 40, less_than_or_equal_to: 45}
end

View File

@ -1,3 +0,0 @@
class Workshop < Event
validates :length, numericality: {greater_than_or_equal_to: 30, less_than_or_equal_to: 120}
end