Files
ubicloud/migrate/20231016_runner_allow_null_vm.rb
Enes Cakir 5c24b2cef5 Make the vm_id column nullable for a GitHub runner
We need to make the 'vm_id' column nullable to achieve async vm
selection. This commit only adds the migration file. Details will follow
in the next commit.
2023-10-19 09:19:28 +03:00

10 lines
151 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:github_runner) do
set_column_allow_null :vm_id
end
end
end