mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
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
|