In order to determine and save the disk devices of each VmHost We store an array of strings representing the device names. Also updated the schema caches.
10 lines
190 B
Ruby
10 lines
190 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:storage_device) do
|
|
add_column :unix_device_list, "text[]", collate: '"C"', null: true
|
|
end
|
|
end
|
|
end
|