mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-10-04 05:42:15 +08:00
We removed support for max_ios_per_sec in earlier commits, so this drops the corresponding column from the database.
9 lines
155 B
Ruby
9 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
|