Add start hour and end hour to conference to be able to make the schedule times changeable
6 lines
202 B
Ruby
6 lines
202 B
Ruby
class AddTimesToConferences < ActiveRecord::Migration
|
|
def change
|
|
add_column :conferences, :start_hour, :integer, default: 9
|
|
add_column :conferences, :end_hour, :integer, default: 20
|
|
end
|
|
end
|