add number of attempts to hubspot deals table

This commit is contained in:
Daniel Roth 2026-07-03 10:38:09 +00:00
parent f788c858c6
commit a6c642966e

View file

@ -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(),