added damp and mould to table

This commit is contained in:
Jun-te Kim 2026-04-02 09:47:39 +00:00
parent 47fa8f6fca
commit 652f5ce4c7
4 changed files with 6245 additions and 0 deletions

View file

@ -0,0 +1 @@
ALTER TABLE "hubspot_deal_data" ADD COLUMN "damp_mould_and_repairs_comments" text;

File diff suppressed because it is too large Load diff

View file

@ -1142,6 +1142,13 @@
"when": 1775041844023,
"tag": "0162_powerful_paladin",
"breakpoints": true
},
{
"idx": 163,
"version": "7",
"when": 1775123235194,
"tag": "0163_cultured_madripoor",
"breakpoints": true
}
]
}

View file

@ -44,6 +44,7 @@ export const hubspotDealData = pgTable("hubspot_deal_data", {
lodgementDate: timestamp("lodgement_date", { precision: 6, withTimezone: true }),
expectedCommencementDate: timestamp("expected_commencement_date", { precision: 6, withTimezone: true }),
surveyor: text("surveyor"),
damnpMouldAndRepairComments: text("damp_mould_and_repairs_comments"),
confirmedSurveyDate: timestamp("confirmed_survey_date", { precision: 6, withTimezone: true }),
confirmedSurveyTime: text("confirmed_survey_time"),
SurveyedDate: timestamp("surveyed_date", { precision: 6, withTimezone: true }),