From 25332b4a60ab406b3a63d4368df29b3ce8d9bc10 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Wed, 24 Jan 2024 12:59:50 -0800 Subject: [PATCH] (fix) LiteLLM_VerificationToken - use NULL default for max_budget --- litellm/proxy/schema.prisma | 2 +- schema.prisma | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/proxy/schema.prisma b/litellm/proxy/schema.prisma index ea3bade8c..5b9e5fc97 100644 --- a/litellm/proxy/schema.prisma +++ b/litellm/proxy/schema.prisma @@ -33,7 +33,7 @@ model LiteLLM_VerificationToken { metadata Json @default("{}") tpm_limit BigInt? rpm_limit BigInt? - max_budget Float? @default(0.0) + max_budget Float? budget_duration String? budget_reset_at DateTime? } diff --git a/schema.prisma b/schema.prisma index ea3bade8c..5b9e5fc97 100644 --- a/schema.prisma +++ b/schema.prisma @@ -33,7 +33,7 @@ model LiteLLM_VerificationToken { metadata Json @default("{}") tpm_limit BigInt? rpm_limit BigInt? - max_budget Float? @default(0.0) + max_budget Float? budget_duration String? budget_reset_at DateTime? }