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 GitHub
parent e0613cbd0f
commit 2781a30971
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;