Files
ubicloud/migrate/20250321_add_runner_allocation_timestamp.rb

10 lines
161 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:github_runner) do
add_column :allocated_at, :timestamptz
end
end
end