We started caching the total used vCPUs in the github_installation table to eliminate project locking. The next commit has the details.
10 lines
186 B
Ruby
10 lines
186 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:github_installation) do
|
|
add_column :used_vcpus, :Integer, null: false, default: 0
|
|
end
|
|
end
|
|
end
|