confirmed surveyed date added

This commit is contained in:
Jun-te Kim 2026-04-01 11:08:50 +00:00
parent 0875e90586
commit 592819beff
4 changed files with 6233 additions and 0 deletions

View file

@ -0,0 +1 @@
ALTER TABLE "hubspot_deal_data" ADD COLUMN "surveyed_date" timestamp (6) with time zone;

File diff suppressed because it is too large Load diff

View file

@ -1128,6 +1128,13 @@
"when": 1774970639805,
"tag": "0160_slimy_polaris",
"breakpoints": true
},
{
"idx": 161,
"version": "7",
"when": 1775041707059,
"tag": "0161_fresh_taskmaster",
"breakpoints": true
}
]
}

View file

@ -45,6 +45,7 @@ export const hubspotDealData = pgTable("hubspot_deal_data", {
surveyor: text("surveyor"),
confirmedSurveyDate: timestamp("confirmed_survey_date", { precision: 6, withTimezone: true }),
confirmedSurveyTime: text("confirmed_survey_time"),
SurveyedDate: timestamp("surveyed_date", { precision: 6, withTimezone: true }),
createdAt: timestamp("created_at", { precision: 6, withTimezone: true })
.defaultNow()