mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-07-27 22:45:03 +00:00
Merge pull request #465 from Hestia-Homes/feature/hubspot-deal-extra-booking-information
Some checks are pending
Test Suite / unit-tests (push) Waiting to run
Some checks are pending
Test Suite / unit-tests (push) Waiting to run
Add notes_for_surveyor (extra booking information) to hubspot deal table
This commit is contained in:
commit
1d0733563d
4 changed files with 13509 additions and 0 deletions
1
src/app/db/migrations/0282_strong_jackpot.sql
Normal file
1
src/app/db/migrations/0282_strong_jackpot.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE "hubspot_deal_data" ADD COLUMN "notes_for_surveyor" text;
|
||||
13500
src/app/db/migrations/meta/0282_snapshot.json
Normal file
13500
src/app/db/migrations/meta/0282_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1968,6 +1968,13 @@
|
|||
"when": 1784882283273,
|
||||
"tag": "0281_work_order_status_default",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 282,
|
||||
"version": "7",
|
||||
"when": 1785158221771,
|
||||
"tag": "0282_strong_jackpot",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -24,6 +24,7 @@ export const hubspotDealData = pgTable("hubspot_deal_data", {
|
|||
coordinationStatus: text("coordination_status"),
|
||||
designStatus: text("design_status"),
|
||||
bookingStatus: text("booking_status"),
|
||||
notesForSurveyor: text("notes_for_surveyor"), // Extra booking information
|
||||
|
||||
pashubLink: text("pashub_link"),
|
||||
sharepointLink: text("sharepoint_link"),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue