mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-10-04 05:42:15 +08:00
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.
9 lines
185 B
Ruby
9 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
|