add cache_creation_input_tokens and cache_read_input_tokens to LiteLLM_DailyUserSpend

This commit is contained in:
Ishaan Jaff 2025-04-15 15:17:06 -07:00
parent e958705d68
commit e7ac71fc57

View file

@ -0,0 +1,4 @@
-- AlterTable
ALTER TABLE "LiteLLM_DailyUserSpend" ADD COLUMN "cache_creation_input_tokens" INTEGER NOT NULL DEFAULT 0,
ADD COLUMN "cache_read_input_tokens" INTEGER NOT NULL DEFAULT 0;