diff --git a/litellm/proxy/schema.prisma b/litellm/proxy/schema.prisma index cccad973a..598848776 100644 --- a/litellm/proxy/schema.prisma +++ b/litellm/proxy/schema.prisma @@ -55,6 +55,7 @@ model LiteLLM_ModelTable { team LiteLLM_TeamTable? } + // Assign prod keys to groups, not individuals model LiteLLM_TeamTable { team_id String @id @default(uuid()) @@ -72,6 +73,7 @@ model LiteLLM_TeamTable { rpm_limit BigInt? budget_duration String? budget_reset_at DateTime? + blocked Boolean @default(false) created_at DateTime @default(now()) @map("created_at") updated_at DateTime @default(now()) @updatedAt @map("updated_at") model_spend Json @default("{}") diff --git a/schema.prisma b/schema.prisma index cccad973a..598848776 100644 --- a/schema.prisma +++ b/schema.prisma @@ -55,6 +55,7 @@ model LiteLLM_ModelTable { team LiteLLM_TeamTable? } + // Assign prod keys to groups, not individuals model LiteLLM_TeamTable { team_id String @id @default(uuid()) @@ -72,6 +73,7 @@ model LiteLLM_TeamTable { rpm_limit BigInt? budget_duration String? budget_reset_at DateTime? + blocked Boolean @default(false) created_at DateTime @default(now()) @map("created_at") updated_at DateTime @default(now()) @updatedAt @map("updated_at") model_spend Json @default("{}")