From 29885bbdc1901634bdcb300e022b7a16196819d1 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Sat, 3 Feb 2024 10:23:50 -0800 Subject: [PATCH] (feat) set user_role for Users --- 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 ab6ff638b..2164358cc 100644 --- a/litellm/proxy/schema.prisma +++ b/litellm/proxy/schema.prisma @@ -11,7 +11,7 @@ generator client { model LiteLLM_UserTable { user_id String @unique team_id String? - role String? + user_role String? max_budget Float? spend Float @default(0.0) user_email String? diff --git a/schema.prisma b/schema.prisma index ab6ff638b..2164358cc 100644 --- a/schema.prisma +++ b/schema.prisma @@ -11,7 +11,7 @@ generator client { model LiteLLM_UserTable { user_id String @unique team_id String? - role String? + user_role String? max_budget Float? spend Float @default(0.0) user_email String?