Merge branch 'main' into feature/new-epc-tables

This commit is contained in:
Daniel Roth 2026-04-23 16:25:05 +00:00
commit fa38abfc8c
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"),