mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-08 22:21:35 +00:00
fix(schema): add soft_budget to LiteLLM_DeletedTeamTable
The soft_budget field was added to LiteLLM_TeamTable in commit a17efa1c8e
but was missing from LiteLLM_DeletedTeamTable schema. This caused a 500
error when deleting teams because the delete_team endpoint persists
team records to the deleted team table.
Fixes test_team_delete regression in CI (build_and_test job).
This commit is contained in:
parent
95f8cbe5ca
commit
beae7c3bec
3 changed files with 3 additions and 0 deletions
|
|
@ -148,6 +148,7 @@ model LiteLLM_DeletedTeamTable {
|
|||
members_with_roles Json @default("{}")
|
||||
metadata Json @default("{}")
|
||||
max_budget Float?
|
||||
soft_budget Float?
|
||||
spend Float @default(0.0)
|
||||
models String[]
|
||||
max_parallel_requests Int?
|
||||
|
|
|
|||
|
|
@ -147,6 +147,7 @@ model LiteLLM_DeletedTeamTable {
|
|||
members_with_roles Json @default("{}")
|
||||
metadata Json @default("{}")
|
||||
max_budget Float?
|
||||
soft_budget Float?
|
||||
spend Float @default(0.0)
|
||||
models String[]
|
||||
max_parallel_requests Int?
|
||||
|
|
|
|||
|
|
@ -148,6 +148,7 @@ model LiteLLM_DeletedTeamTable {
|
|||
members_with_roles Json @default("{}")
|
||||
metadata Json @default("{}")
|
||||
max_budget Float?
|
||||
soft_budget Float?
|
||||
spend Float @default(0.0)
|
||||
models String[]
|
||||
max_parallel_requests Int?
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue