mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
added property data
This commit is contained in:
parent
c8380f513c
commit
67f1c19e0d
4 changed files with 7002 additions and 0 deletions
3
src/app/db/migrations/0183_careless_darkhawk.sql
Normal file
3
src/app/db/migrations/0183_careless_darkhawk.sql
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
ALTER TABLE "property" ADD COLUMN "user_inputted_address" text;--> statement-breakpoint
|
||||
ALTER TABLE "property" ADD COLUMN "user_inputted_postcode" text;--> statement-breakpoint
|
||||
ALTER TABLE "property" ADD COLUMN "lexiscore" real;
|
||||
6989
src/app/db/migrations/meta/0183_snapshot.json
Normal file
6989
src/app/db/migrations/meta/0183_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1282,6 +1282,13 @@
|
|||
"when": 1776699608018,
|
||||
"tag": "0182_messy_calypso",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 183,
|
||||
"version": "7",
|
||||
"when": 1776947867497,
|
||||
"tag": "0183_careless_darkhawk",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -114,6 +114,9 @@ export const property = pgTable(
|
|||
status: propertyStatusEnum("status"),
|
||||
address: text("address"),
|
||||
postcode: text("postcode"),
|
||||
userInputtedAddress: text("user_inputted_address"),
|
||||
userInputtedPostcode: text("user_inputted_postcode"),
|
||||
lexiscore: real("lexiscore"),
|
||||
|
||||
hasPreConditionReport: boolean("has_pre_condition_report"),
|
||||
hasRecommendations: boolean("has_recommendations"),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue