mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-11-28 00:20:26 +08:00
This will hold an encrypted version of the init script. There is no database column limit. We'll be including a model validation for the the same limit.
9 lines
155 B
Ruby
9 lines
155 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:vm_init_script) do
|
|
add_column :init_script, String
|
|
end
|
|
end
|
|
end
|