mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-10-05 06:12:09 +08:00
9 lines
148 B
Ruby
9 lines
148 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:vm_host) do
|
|
add_column :total_dies, Integer
|
|
end
|
|
end
|
|
end
|