We removed support for max_ios_per_sec in earlier commits, so this drops the corresponding column from the database.
10 lines
155 B
Ruby
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
|