Add missing migration for the previous commit

This commit is contained in:
Petko Bordjukov 2015-08-20 00:26:47 +03:00
parent a87c7bd496
commit cd44861988
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
class AddTimeLimitsToEventTypes < ActiveRecord::Migration
def change
add_column :event_types, :minimum_length, :integer
add_column :event_types, :maximum_length, :integer
end
end