mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
Merge branch 'main' into feature/onbarding_of_addresses
This commit is contained in:
commit
c4e199deaa
4 changed files with 6348 additions and 0 deletions
1
src/app/db/migrations/0169_freezing_moonstone.sql
Normal file
1
src/app/db/migrations/0169_freezing_moonstone.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE "uploaded_files" ADD COLUMN "hubspot_deal_id" text;
|
||||
6339
src/app/db/migrations/meta/0169_snapshot.json
Normal file
6339
src/app/db/migrations/meta/0169_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1184,6 +1184,13 @@
|
|||
"when": 1776246796721,
|
||||
"tag": "0168_romantic_kronos",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 169,
|
||||
"version": "7",
|
||||
"when": 1776351792028,
|
||||
"tag": "0169_freezing_moonstone",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -33,6 +33,7 @@ export const uploadedFiles = pgTable(
|
|||
}).notNull(),
|
||||
landlordPropertyId: text("landlord_property_id"),
|
||||
uprn: bigint("uprn", { mode: "bigint" }),
|
||||
hubsotDealId: text("hubspot_deal_id"),
|
||||
hubspotListingId: bigint("hubspot_listing_id", { mode: "bigint" }),
|
||||
fileType: fileType("file_type"),
|
||||
source: fileSource("file_source")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue