From 8a9bb51f4e902efcca1a03c7f71d34810882578b Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 9 Oct 2024 15:25:27 +0530 Subject: [PATCH] fix schema.prisma change --- litellm/proxy/schema.prisma | 4 ++-- schema.prisma | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/litellm/proxy/schema.prisma b/litellm/proxy/schema.prisma index e5a9a0ab8..e7e543351 100644 --- a/litellm/proxy/schema.prisma +++ b/litellm/proxy/schema.prisma @@ -238,8 +238,8 @@ model LiteLLM_TeamMembership { model LiteLLM_OrganizationMembership { // Use this table to track Internal User and Organization membership. Helps tracking a users role within an Organization - user_id String? - organization_id String? + user_id String + organization_id String user_role String? spend Float? @default(0.0) budget_id String? diff --git a/schema.prisma b/schema.prisma index e5a9a0ab8..e7e543351 100644 --- a/schema.prisma +++ b/schema.prisma @@ -238,8 +238,8 @@ model LiteLLM_TeamMembership { model LiteLLM_OrganizationMembership { // Use this table to track Internal User and Organization membership. Helps tracking a users role within an Organization - user_id String? - organization_id String? + user_id String + organization_id String user_role String? spend Float? @default(0.0) budget_id String?