ubicloud/migrate/20251124_encrypted_vm_init_script.rb
Jeremy Evans e8d3603da0 Add migration for vm_init_script.init_script column
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.
2025-11-26 12:48:22 +09:00

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