From d49042eb7ecf7869370f5e7ddc4288726443db8d Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 6 Jul 2026 15:46:18 +0000 Subject: [PATCH] add client booking reference to hubspot deal data --- src/app/db/schema/crm/hubspot_deal_table.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/db/schema/crm/hubspot_deal_table.ts b/src/app/db/schema/crm/hubspot_deal_table.ts index 95c0a067..4084e5b9 100644 --- a/src/app/db/schema/crm/hubspot_deal_table.ts +++ b/src/app/db/schema/crm/hubspot_deal_table.ts @@ -81,6 +81,7 @@ export const hubspotDealData = pgTable("hubspot_deal_data", { lastSubmissionDate: timestamp("last_submission_date", { precision: 6, withTimezone: true }), numberOfAttempts: text("number_of_attempts"), + clientBookingReference: text("client_booking_reference"), createdAt: timestamp("created_at", { precision: 6, withTimezone: true }) .defaultNow()