Merge pull request #213 from Hestia-Homes/feature/damp_and_mould_comments
Some checks failed
Next.js Build Check / build (push) Has been cancelled

added damp and mould to table
This commit is contained in:
Jun-te Kim 2026-04-02 10:54:17 +01:00 committed by GitHub
commit c8dc714ee3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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 }),