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