forked from phoenix/litellm-mirror
fix created_at and updated_at not existing error
This commit is contained in:
parent
ace929b588
commit
a44596a067
3 changed files with 0 additions and 6 deletions
|
@ -1300,8 +1300,6 @@ class LiteLLM_VerificationToken(LiteLLMBase):
|
|||
soft_budget_cooldown: bool = False
|
||||
litellm_budget_table: Optional[dict] = None
|
||||
org_id: Optional[str] = None # org id for a given key
|
||||
created_at: Optional[datetime] = None
|
||||
updated_at: Optional[datetime] = None
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
||||
|
||||
|
|
|
@ -149,8 +149,6 @@ model LiteLLM_VerificationToken {
|
|||
model_max_budget Json @default("{}")
|
||||
budget_id String?
|
||||
litellm_budget_table LiteLLM_BudgetTable? @relation(fields: [budget_id], references: [budget_id])
|
||||
created_at DateTime @default(now()) @map("created_at")
|
||||
updated_at DateTime @default(now()) @updatedAt @map("updated_at")
|
||||
}
|
||||
|
||||
model LiteLLM_EndUserTable {
|
||||
|
|
|
@ -149,8 +149,6 @@ model LiteLLM_VerificationToken {
|
|||
model_max_budget Json @default("{}")
|
||||
budget_id String?
|
||||
litellm_budget_table LiteLLM_BudgetTable? @relation(fields: [budget_id], references: [budget_id])
|
||||
created_at DateTime @default(now()) @map("created_at")
|
||||
updated_at DateTime @default(now()) @updatedAt @map("updated_at")
|
||||
}
|
||||
|
||||
model LiteLLM_EndUserTable {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue