From a6c642966e3a404ae48d95fbb78baf319425a0f7 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 3 Jul 2026 10:38:09 +0000 Subject: [PATCH] add number of attempts to hubspot deals table --- src/app/db/schema/crm/hubspot_deal_table.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/db/schema/crm/hubspot_deal_table.ts b/src/app/db/schema/crm/hubspot_deal_table.ts index 85f9f3d5..95c0a067 100644 --- a/src/app/db/schema/crm/hubspot_deal_table.ts +++ b/src/app/db/schema/crm/hubspot_deal_table.ts @@ -80,6 +80,8 @@ export const hubspotDealData = pgTable("hubspot_deal_data", { lastOutboundEmail: timestamp("last_outbound_email", { precision: 6, withTimezone: true }), lastSubmissionDate: timestamp("last_submission_date", { precision: 6, withTimezone: true }), + numberOfAttempts: text("number_of_attempts"), + createdAt: timestamp("created_at", { precision: 6, withTimezone: true }) .defaultNow() .notNull(),