From a3ee12a4183d666b7da212875e058c1d3c55e779 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 15 Jun 2026 08:50:41 +0000 Subject: [PATCH] osmosis_survey_required column --- src/app/db/schema/crm/hubspot_deal_table.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/db/schema/crm/hubspot_deal_table.ts b/src/app/db/schema/crm/hubspot_deal_table.ts index 29894e4e..9a5d61c0 100644 --- a/src/app/db/schema/crm/hubspot_deal_table.ts +++ b/src/app/db/schema/crm/hubspot_deal_table.ts @@ -57,7 +57,7 @@ export const hubspotDealData = pgTable("hubspot_deal_data", { eiScore: text("ei_score"), eiScorePotential: text("ei_score__potential_"), epcSapScore: text("epc_sap_score"), - epcSapScorePotential: text("epc_sap_score__potential_"), + epcSapScorePotential: text("epc_sap_score__potential_"), // This is being replaced by potentialPostSapScoreDropdown ^ confirmedSurveyDate: timestamp("confirmed_survey_date", { precision: 6, withTimezone: true }), confirmedSurveyTime: text("confirmed_survey_time"), surveyedDate: timestamp("surveyed_date", { precision: 6, withTimezone: true }), @@ -74,6 +74,8 @@ export const hubspotDealData = pgTable("hubspot_deal_data", { domnaSurveyType: text("domna_survey_type"), domnaSurveyDate: timestamp("domna_survey_date", { precision: 6, withTimezone: true }), + osmosisSurveyRequired: boolean("osmosis_survey_required"), + dateBookingMade: timestamp("date_booking_made", { precision: 6, withTimezone: true }), lastContactDate: timestamp("last_contact_date", { precision: 6, withTimezone: true }), lastOutboundCall: timestamp("last_outbound_call", { precision: 6, withTimezone: true }),