From eb35d25a7d0fb77ab6fc6281e009fcc8b88dd827 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 21 May 2025 18:43:46 -0400 Subject: [PATCH] collab: Drop `billing_events` table (#31131) This PR drops the `billing_events` table, as we're no longer using it. Release Notes: - N/A --- .../migrations_llm/20250521222416_drop_billing_events_table.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 crates/collab/migrations_llm/20250521222416_drop_billing_events_table.sql diff --git a/crates/collab/migrations_llm/20250521222416_drop_billing_events_table.sql b/crates/collab/migrations_llm/20250521222416_drop_billing_events_table.sql new file mode 100644 index 0000000000..36b79266b6 --- /dev/null +++ b/crates/collab/migrations_llm/20250521222416_drop_billing_events_table.sql @@ -0,0 +1 @@ +drop table billing_events;