mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-07-22 08:48:34 +00:00
Merge pull request #357 from Hestia-Homes/feature/hubspot_deal_data_migration
add client booking reference to hubspot deal data
This commit is contained in:
commit
27254e7622
4 changed files with 11797 additions and 0 deletions
1
src/app/db/migrations/0261_fixed_excalibur.sql
Normal file
1
src/app/db/migrations/0261_fixed_excalibur.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE "hubspot_deal_data" ADD COLUMN "client_booking_reference" text;
|
||||
11788
src/app/db/migrations/meta/0261_snapshot.json
Normal file
11788
src/app/db/migrations/meta/0261_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1821,6 +1821,13 @@
|
|||
"when": 1783345567793,
|
||||
"tag": "0260_natural_enchantress",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 261,
|
||||
"version": "7",
|
||||
"when": 1783352788862,
|
||||
"tag": "0261_fixed_excalibur",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -81,6 +81,7 @@ export const hubspotDealData = pgTable("hubspot_deal_data", {
|
|||
lastSubmissionDate: timestamp("last_submission_date", { precision: 6, withTimezone: true }),
|
||||
|
||||
numberOfAttempts: text("number_of_attempts"),
|
||||
clientBookingReference: text("client_booking_reference"),
|
||||
|
||||
createdAt: timestamp("created_at", { precision: 6, withTimezone: true })
|
||||
.defaultNow()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue