mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-11-28 00:20:26 +08:00
10 lines
192 B
Ruby
10 lines
192 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:vm_init_script) do
|
|
set_column_allow_null :script
|
|
set_column_not_null :init_script
|
|
end
|
|
end
|
|
end
|