mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
9 lines
279 B
Ruby
9 lines
279 B
Ruby
|
# frozen_string_literal:true
|
||
|
|
||
|
# From this migration any availability can override the default SLOT_DURATION value for its own slots
|
||
|
class AddSlotDurationToAvailability < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_column :availabilities, :slot_duration, :integer
|
||
|
end
|
||
|
end
|