mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-30 12:55:02 +00:00
confirmed surveyed date added
This commit is contained in:
parent
0875e90586
commit
592819beff
4 changed files with 6233 additions and 0 deletions
1
src/app/db/migrations/0161_fresh_taskmaster.sql
Normal file
1
src/app/db/migrations/0161_fresh_taskmaster.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE "hubspot_deal_data" ADD COLUMN "surveyed_date" timestamp (6) with time zone;
|
||||
6224
src/app/db/migrations/meta/0161_snapshot.json
Normal file
6224
src/app/db/migrations/meta/0161_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1128,6 +1128,13 @@
|
|||
"when": 1774970639805,
|
||||
"tag": "0160_slimy_polaris",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 161,
|
||||
"version": "7",
|
||||
"when": 1775041707059,
|
||||
"tag": "0161_fresh_taskmaster",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -45,6 +45,7 @@ export const hubspotDealData = pgTable("hubspot_deal_data", {
|
|||
surveyor: text("surveyor"),
|
||||
confirmedSurveyDate: timestamp("confirmed_survey_date", { precision: 6, withTimezone: true }),
|
||||
confirmedSurveyTime: text("confirmed_survey_time"),
|
||||
SurveyedDate: timestamp("surveyed_date", { precision: 6, withTimezone: true }),
|
||||
|
||||
createdAt: timestamp("created_at", { precision: 6, withTimezone: true })
|
||||
.defaultNow()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue