forked from phoenix/litellm-mirror
update schema
This commit is contained in:
parent
0a15d3b3c3
commit
fb150f7ce5
2 changed files with 6 additions and 0 deletions
|
@ -149,6 +149,9 @@ model LiteLLM_VerificationToken {
|
||||||
model_max_budget Json @default("{}")
|
model_max_budget Json @default("{}")
|
||||||
budget_id String?
|
budget_id String?
|
||||||
litellm_budget_table LiteLLM_BudgetTable? @relation(fields: [budget_id], references: [budget_id])
|
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 {
|
model LiteLLM_EndUserTable {
|
||||||
|
|
|
@ -149,6 +149,9 @@ model LiteLLM_VerificationToken {
|
||||||
model_max_budget Json @default("{}")
|
model_max_budget Json @default("{}")
|
||||||
budget_id String?
|
budget_id String?
|
||||||
litellm_budget_table LiteLLM_BudgetTable? @relation(fields: [budget_id], references: [budget_id])
|
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 {
|
model LiteLLM_EndUserTable {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue