collab: Make stripe_subscription_id and stripe_subscription_status nullable on billing_subscriptions (#36536)

This PR makes the `stripe_subscription_id` and
`stripe_subscription_status` columns nullable on the
`billing_subscriptions` table.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-08-19 20:25:07 -04:00 committed by GitHub
parent 757b37fd41
commit 82ac8a8aaa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,3 @@
alter table billing_subscriptions
alter column stripe_subscription_id drop not null,
alter column stripe_subscription_status drop not null;