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?