From 34c0c707c055cbdc0245ddc2e73b4f58cc3bfa00 Mon Sep 17 00:00:00 2001 From: Yuneng Jiang Date: Fri, 21 Aug 2026 11:26:54 -0700 Subject: [PATCH] revert(spend-logs): drop the endTime backfill migration for spend log timestamps Reverts #37554, which added 20260819000000_backfill_spend_log_timestamps --- .../migration.sql | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 litellm-proxy-extras/litellm_proxy_extras/migrations/20260819000000_backfill_spend_log_timestamps/migration.sql diff --git a/litellm-proxy-extras/litellm_proxy_extras/migrations/20260819000000_backfill_spend_log_timestamps/migration.sql b/litellm-proxy-extras/litellm_proxy_extras/migrations/20260819000000_backfill_spend_log_timestamps/migration.sql deleted file mode 100644 index 10003afa9db..00000000000 --- a/litellm-proxy-extras/litellm_proxy_extras/migrations/20260819000000_backfill_spend_log_timestamps/migration.sql +++ /dev/null @@ -1,4 +0,0 @@ -UPDATE "LiteLLM_SpendLogs" -SET "created_at" = "endTime", - "updated_at" = "endTime" -WHERE "created_at" > "endTime" + interval '1 hour';