collab: Add external_id column to billing_customers table (#42923)

This PR adds an `external_id` column to the `billing_customers` table.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers
2025-11-17 22:12:00 +00:00
committed by GitHub
parent d9cfc2c883
commit 73d3f9611e
@@ -0,0 +1,4 @@
alter table billing_customers
add column external_id text;
create unique index uix_billing_customers_on_external_id on billing_customers (external_id);