Files
ubicloud/migrate/20231123_bdev_ubi.rb
Hadi Moshayedi a6c7933a51 Migrations for enabling bdev_ubi for a storage volume.
Doing this in a separate step in order to have a smoother deployment.
2023-11-22 15:38:24 -08:00

10 lines
187 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:vm_storage_volume) do
add_column :use_bdev_ubi, :bool, null: false, default: false
end
end
end