mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
10 lines
338 B
Ruby
10 lines
338 B
Ruby
|
# frozen_string_literal:true
|
||
|
|
||
|
# From this migration, we add a machines_visibility parameter to plans.
|
||
|
# This parameter determines how far in advance subscribers can view and reserve machine slots.
|
||
|
class AddMachineVisibilityToPlan < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_column :plans, :machines_visibility, :integer
|
||
|
end
|
||
|
end
|