update schema

This commit is contained in:
Ishaan Jaff 2024-08-26 16:52:19 -07:00
parent 0a15d3b3c3
commit fb150f7ce5
2 changed files with 6 additions and 0 deletions

View file

@ -149,6 +149,9 @@ model LiteLLM_VerificationToken {
model_max_budget Json @default("{}")
budget_id String?
litellm_budget_table LiteLLM_BudgetTable? @relation(fields: [budget_id], references: [budget_id])
key_state String? // can be "active", "inactive"
created_at DateTime @default(now()) @map("created_at")
updated_at DateTime @default(now()) @updatedAt @map("updated_at")
}
model LiteLLM_EndUserTable {