From a08897ff304d05bae830e9a7cb3d259ca754b48c Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 2 Oct 2025 18:04:57 -0400 Subject: [PATCH] collab: Add `token_spend_in_cents` column to `billing_subscriptions` table (#39404) This PR adds a `token_spend_in_cents` and associated `token_spend_in_cents_updated_at` column to the `billing_subscriptions` table. Release Notes: - N/A --- ...14229_add_token_spend_in_cents_to_billing_subscriptions.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 crates/collab/migrations/20251002214229_add_token_spend_in_cents_to_billing_subscriptions.sql diff --git a/crates/collab/migrations/20251002214229_add_token_spend_in_cents_to_billing_subscriptions.sql b/crates/collab/migrations/20251002214229_add_token_spend_in_cents_to_billing_subscriptions.sql new file mode 100644 index 0000000000000000000000000000000000000000..ccae01e2833fedd530f290c55d2852c33de6957c --- /dev/null +++ b/crates/collab/migrations/20251002214229_add_token_spend_in_cents_to_billing_subscriptions.sql @@ -0,0 +1,3 @@ +alter table billing_subscriptions + add column token_spend_in_cents integer, + add column token_spend_in_cents_updated_at timestamp without time zone;