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.
10 lines
151 B
Ruby
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
|