diff --git a/litellm/proxy/schema.prisma b/litellm/proxy/schema.prisma index 02e4114e5..da2857075 100644 --- a/litellm/proxy/schema.prisma +++ b/litellm/proxy/schema.prisma @@ -20,6 +20,7 @@ model LiteLLM_UserTable { rpm_limit BigInt? budget_duration String? budget_reset_at DateTime? + allowed_cache_controls String[] @default([]) } // Generate Tokens for Proxy @@ -41,6 +42,7 @@ model LiteLLM_VerificationToken { max_budget Float? budget_duration String? budget_reset_at DateTime? + allowed_cache_controls String[] @default([]) } // store proxy config.yaml diff --git a/schema.prisma b/schema.prisma index 02e4114e5..da2857075 100644 --- a/schema.prisma +++ b/schema.prisma @@ -20,6 +20,7 @@ model LiteLLM_UserTable { rpm_limit BigInt? budget_duration String? budget_reset_at DateTime? + allowed_cache_controls String[] @default([]) } // Generate Tokens for Proxy @@ -41,6 +42,7 @@ model LiteLLM_VerificationToken { max_budget Float? budget_duration String? budget_reset_at DateTime? + allowed_cache_controls String[] @default([]) } // store proxy config.yaml