Files
ubicloud/migrate/20250224_add_unix_devices.rb
mohi-kalantari a4945a5c6f Add new field to storage_device table
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.
2025-02-25 09:42:06 +01:00

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