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.
10 lines
163 B
Ruby
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
|