mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Also, the part of the schedule event is deleted and the length of the event types changes to the nearest suitable after changing the length of the interval. This closes #1220
5 lines
166 B
Ruby
5 lines
166 B
Ruby
class AddScheduleIntervalToPrograms < ActiveRecord::Migration
|
|
def change
|
|
add_column :programs, :schedule_interval, :integer, default: 15, null: false
|
|
end
|
|
end
|