mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
Add organization_id to spend logs table
This commit is contained in:
parent
b397162379
commit
dd72ff3abf
4 changed files with 6 additions and 0 deletions
|
|
@ -0,0 +1,3 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "LiteLLM_SpendLogs" ADD COLUMN "organization_id" TEXT;
|
||||
|
||||
|
|
@ -304,6 +304,7 @@ model LiteLLM_SpendLogs {
|
|||
cache_key String? @default("")
|
||||
request_tags Json? @default("[]")
|
||||
team_id String?
|
||||
organization_id String?
|
||||
end_user String?
|
||||
requester_ip_address String?
|
||||
messages Json? @default("{}")
|
||||
|
|
|
|||
|
|
@ -304,6 +304,7 @@ model LiteLLM_SpendLogs {
|
|||
cache_key String? @default("")
|
||||
request_tags Json? @default("[]")
|
||||
team_id String?
|
||||
organization_id String?
|
||||
end_user String?
|
||||
requester_ip_address String?
|
||||
messages Json? @default("{}")
|
||||
|
|
|
|||
|
|
@ -304,6 +304,7 @@ model LiteLLM_SpendLogs {
|
|||
cache_key String? @default("")
|
||||
request_tags Json? @default("[]")
|
||||
team_id String?
|
||||
organization_id String?
|
||||
end_user String?
|
||||
requester_ip_address String?
|
||||
messages Json? @default("{}")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue