Files
ubicloud/migrate/20231004_add_host_data_center.rb
Furkan Sahin 93ee11639a Adds Datacenter Information for Hosts
With this commit we add data_center field to the host table. It will be
initially used for minio but not only that. This is a good information
to store about our hosts for future.
2023-10-05 09:58:14 +01:00

10 lines
163 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:vm_host) do
add_column :data_center, :text, collate: '"C"'
end
end
end