Files
ubicloud/migrate/20250501_github_runner_billed_vm_size.rb
Enes Cakir d1fbfe6e00 Add billed_vm_size column to the runner table
We will upgrade customers' runners to the performance family if they
enabled, or we will upgrade them for free to benchmark their
performance. Either way, we want to keep historical data on which vm
size we charged to track customer usage at the job level.
2025-05-14 11:04:34 +03:00

10 lines
185 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:github_runner) do
add_column :billed_vm_size, String, collate: '"C"', null: true
end
end
end