Merge pull request #239 from Hestia-Homes/feature/property-address2uprn-columns

added property data
This commit is contained in:
Jun-te Kim 2026-04-23 17:18:46 +01:00 committed by GitHub
commit 2a6d010fa1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 7002 additions and 0 deletions

View 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;

File diff suppressed because it is too large Load diff

View file

@ -1282,6 +1282,13 @@
"when": 1776699608018,
"tag": "0182_messy_calypso",
"breakpoints": true
},
{
"idx": 183,
"version": "7",
"when": 1776947867497,
"tag": "0183_careless_darkhawk",
"breakpoints": true
}
]
}

View file

@ -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"),