fix created_at and updated_at not existing error

This commit is contained in:
Ishaan Jaff 2024-08-26 21:04:39 -07:00
parent ace929b588
commit a44596a067
3 changed files with 0 additions and 6 deletions

View file

@ -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=())

View file

@ -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 {

View file

@ -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 {