add last_submission_date to hs deal table

This commit is contained in:
Daniel Roth 2026-06-10 14:23:55 +00:00
parent 23a275ae85
commit a5e07ffa1c

View file

@ -78,6 +78,7 @@ export const hubspotDealData = pgTable("hubspot_deal_data", {
lastContactDate: timestamp("last_contact_date", { precision: 6, withTimezone: true }),
lastOutboundCall: timestamp("last_outbound_call", { precision: 6, withTimezone: true }),
lastOutboundEmail: timestamp("last_outbound_email", { precision: 6, withTimezone: true }),
lastSubmissionDate: timestamp("last_submission_date", { precision: 6, withTimezone: true }),
createdAt: timestamp("created_at", { precision: 6, withTimezone: true })
.defaultNow()