From ffa8310d042ea1a335bf4e980db323c9f8aedaa8 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 21 May 2025 17:55:48 -0400 Subject: [PATCH] collab: Drop `monthly_usages` and `lifetime_usages` tables (#31124) This PR drops the `monthly_usages` and `lifetime_usages` tables from the LLM database, as they are no longer used. Release Notes: - N/A --- .../20250521211721_drop_monthly_and_lifetime_usages_tables.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 crates/collab/migrations_llm/20250521211721_drop_monthly_and_lifetime_usages_tables.sql diff --git a/crates/collab/migrations_llm/20250521211721_drop_monthly_and_lifetime_usages_tables.sql b/crates/collab/migrations_llm/20250521211721_drop_monthly_and_lifetime_usages_tables.sql new file mode 100644 index 0000000000000000000000000000000000000000..5f03f50d0b3e17acf3aabd433df9ef317172039a --- /dev/null +++ b/crates/collab/migrations_llm/20250521211721_drop_monthly_and_lifetime_usages_tables.sql @@ -0,0 +1,2 @@ +drop table monthly_usages; +drop table lifetime_usages;