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
This commit is contained in:
Marshall Bowers
2025-10-02 22:04:57 +00:00
committed by GitHub
parent d359a814f8
commit a08897ff30
@@ -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;