forked from phoenix/litellm-mirror
build(schema.prisma): add user alias to prisma schema
This commit is contained in:
parent
cba0db9cb4
commit
11186d6ab4
2 changed files with 2 additions and 1 deletions
|
@ -39,7 +39,6 @@ model LiteLLM_ProxyModelTable {
|
|||
updated_by String
|
||||
}
|
||||
|
||||
|
||||
model LiteLLM_OrganizationTable {
|
||||
organization_id String @id @default(uuid())
|
||||
organization_alias String
|
||||
|
@ -98,6 +97,7 @@ model LiteLLM_TeamTable {
|
|||
// Track spend, rate limit, budget Users
|
||||
model LiteLLM_UserTable {
|
||||
user_id String @id
|
||||
user_alias String?
|
||||
team_id String?
|
||||
teams String[] @default([])
|
||||
user_role String?
|
||||
|
|
|
@ -97,6 +97,7 @@ model LiteLLM_TeamTable {
|
|||
// Track spend, rate limit, budget Users
|
||||
model LiteLLM_UserTable {
|
||||
user_id String @id
|
||||
user_alias String?
|
||||
team_id String?
|
||||
teams String[] @default([])
|
||||
user_role String?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue