mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
Merge pull request #213 from Hestia-Homes/feature/damp_and_mould_comments
Some checks failed
Next.js Build Check / build (push) Has been cancelled
Some checks failed
Next.js Build Check / build (push) Has been cancelled
added damp and mould to table
This commit is contained in:
commit
c8dc714ee3
4 changed files with 6245 additions and 0 deletions
1
src/app/db/migrations/0163_cultured_madripoor.sql
Normal file
1
src/app/db/migrations/0163_cultured_madripoor.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE "hubspot_deal_data" ADD COLUMN "damp_mould_and_repairs_comments" text;
|
||||
6236
src/app/db/migrations/meta/0163_snapshot.json
Normal file
6236
src/app/db/migrations/meta/0163_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1142,6 +1142,13 @@
|
|||
"when": 1775041844023,
|
||||
"tag": "0162_powerful_paladin",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 163,
|
||||
"version": "7",
|
||||
"when": 1775123235194,
|
||||
"tag": "0163_cultured_madripoor",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -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 }),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue