From e40a950bc4c0cd3e29f1571920b29005618d2c6c Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Sat, 13 Sep 2025 22:42:39 -0400 Subject: [PATCH] collab: Add `orb_portal_url` column to `billing_customers` table (#38124) This PR adds an `orb_portal_url` column to the `billing_customers` table. Release Notes: - N/A --- .../20250914022147_add_orb_portal_url_to_billing_customers.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 crates/collab/migrations/20250914022147_add_orb_portal_url_to_billing_customers.sql diff --git a/crates/collab/migrations/20250914022147_add_orb_portal_url_to_billing_customers.sql b/crates/collab/migrations/20250914022147_add_orb_portal_url_to_billing_customers.sql new file mode 100644 index 0000000000000000000000000000000000000000..2de05740410f5d13f7cd510a85af24dd2ff171b6 --- /dev/null +++ b/crates/collab/migrations/20250914022147_add_orb_portal_url_to_billing_customers.sql @@ -0,0 +1,2 @@ +alter table billing_customers + add column orb_portal_url text;