From aee477f4aa5a4a862204c1f35877ab14f79dbd85 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Sat, 3 Feb 2024 10:09:27 -0800 Subject: [PATCH] (feat) add user_rol to schema.prisma --- litellm/proxy/schema.prisma | 1 + schema.prisma | 1 + 2 files changed, 2 insertions(+) diff --git a/litellm/proxy/schema.prisma b/litellm/proxy/schema.prisma index da2857075..ab6ff638b 100644 --- a/litellm/proxy/schema.prisma +++ b/litellm/proxy/schema.prisma @@ -11,6 +11,7 @@ generator client { model LiteLLM_UserTable { user_id String @unique team_id String? + role String? max_budget Float? spend Float @default(0.0) user_email String? diff --git a/schema.prisma b/schema.prisma index da2857075..ab6ff638b 100644 --- a/schema.prisma +++ b/schema.prisma @@ -11,6 +11,7 @@ generator client { model LiteLLM_UserTable { user_id String @unique team_id String? + role String? max_budget Float? spend Float @default(0.0) user_email String?