fix schema

This commit is contained in:
Ishaan Jaff 2024-08-26 17:27:06 -07:00
parent cbef0c0a0d
commit 5745f3d6cc
3 changed files with 0 additions and 3 deletions

View file

@ -1300,7 +1300,6 @@ class LiteLLM_VerificationToken(LiteLLMBase):
soft_budget_cooldown: bool = False soft_budget_cooldown: bool = False
litellm_budget_table: Optional[dict] = None litellm_budget_table: Optional[dict] = None
org_id: Optional[str] = None # org id for a given key org_id: Optional[str] = None # org id for a given key
key_state: Optional[str] = None # can be "active", "inactive"
created_at: Optional[datetime] = None created_at: Optional[datetime] = None
updated_at: Optional[datetime] = None updated_at: Optional[datetime] = None

View file

@ -149,7 +149,6 @@ 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") created_at DateTime @default(now()) @map("created_at")
updated_at DateTime @default(now()) @updatedAt @map("updated_at") updated_at DateTime @default(now()) @updatedAt @map("updated_at")
} }

View file

@ -149,7 +149,6 @@ 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") created_at DateTime @default(now()) @map("created_at")
updated_at DateTime @default(now()) @updatedAt @map("updated_at") updated_at DateTime @default(now()) @updatedAt @map("updated_at")
} }