diff --git a/litellm/proxy/_types.py b/litellm/proxy/_types.py index 260f0431d..554c9e4e4 100644 --- a/litellm/proxy/_types.py +++ b/litellm/proxy/_types.py @@ -1300,7 +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 - key_state: Optional[str] = None # can be "active", "inactive" created_at: Optional[datetime] = None updated_at: Optional[datetime] = None diff --git a/litellm/proxy/schema.prisma b/litellm/proxy/schema.prisma index 55bfdb2e0..1af0c0a34 100644 --- a/litellm/proxy/schema.prisma +++ b/litellm/proxy/schema.prisma @@ -149,7 +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]) - key_state String? // can be "active", "inactive" created_at DateTime @default(now()) @map("created_at") updated_at DateTime @default(now()) @updatedAt @map("updated_at") } diff --git a/schema.prisma b/schema.prisma index 01fe468d0..86ec201f7 100644 --- a/schema.prisma +++ b/schema.prisma @@ -149,7 +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]) - key_state String? // can be "active", "inactive" created_at DateTime @default(now()) @map("created_at") updated_at DateTime @default(now()) @updatedAt @map("updated_at") }