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