Skip to content

Commit

Permalink
update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ishaan-jaff committed Aug 26, 2024
1 parent 0a15d3b commit fb150f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions litellm/proxy/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
3 changes: 3 additions & 0 deletions schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit fb150f7

Please sign in to comment.