mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-07-12 13:28:55 +00:00
Merge pull request #352 from Hestia-Homes/hs-number_of_attempts
Add numberOfAttempts to hubspot deals table
This commit is contained in:
commit
b94feae398
4 changed files with 11791 additions and 0 deletions
1
src/app/db/migrations/0259_fantastic_rockslide.sql
Normal file
1
src/app/db/migrations/0259_fantastic_rockslide.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE "hubspot_deal_data" ADD COLUMN "number_of_attempts" text;
|
||||
11781
src/app/db/migrations/meta/0259_snapshot.json
Normal file
11781
src/app/db/migrations/meta/0259_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1807,6 +1807,13 @@
|
|||
"when": 1783009784235,
|
||||
"tag": "0258_plan_recommendations_rec_id_index",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 259,
|
||||
"version": "7",
|
||||
"when": 1783075096141,
|
||||
"tag": "0259_fantastic_rockslide",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -80,6 +80,8 @@ export const hubspotDealData = pgTable("hubspot_deal_data", {
|
|||
lastOutboundEmail: timestamp("last_outbound_email", { precision: 6, withTimezone: true }),
|
||||
lastSubmissionDate: timestamp("last_submission_date", { precision: 6, withTimezone: true }),
|
||||
|
||||
numberOfAttempts: text("number_of_attempts"),
|
||||
|
||||
createdAt: timestamp("created_at", { precision: 6, withTimezone: true })
|
||||
.defaultNow()
|
||||
.notNull(),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue