mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-15 20:54:03 +00:00
6 lines
166 B
Ruby
6 lines
166 B
Ruby
|
|
class AddScheduleIntervalToPrograms < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :programs, :schedule_interval, :integer, default: 15, null: false
|
||
|
|
end
|
||
|
|
end
|