collab: Add Orb subscription status and period to billing_subscriptions table (#36682)

This PR adds the following new columns to the `billing_subscriptions`
table:

- `orb_subscription_status`
- `orb_current_billing_period_start_date`
- `orb_current_billing_period_end_date`

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-08-21 09:59:18 -04:00 committed by Orual
parent f2be94578a
commit c1ac2b8ecd
No known key found for this signature in database

View file

@ -0,0 +1,4 @@
alter table billing_subscriptions
add column orb_subscription_status text,
add column orb_current_billing_period_start_date timestamp without time zone,
add column orb_current_billing_period_end_date timestamp without time zone;