Files
ubicloud/migrate/20250624_remove_ios_per_sec.rb
Hadi Moshayedi f1524fbf8c Drop max_ios_per_sec from vm_storage_volume.
We removed support for max_ios_per_sec in earlier commits, so this drops
the corresponding column from the database.
2025-06-24 20:30:51 -07:00

10 lines
155 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:vm_storage_volume) do
drop_column :max_ios_per_sec
end
end
end