From cb59f435ad080af6dc9b31c99bd0d4be7caaf055 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 24 Apr 2026 09:48:15 +0000 Subject: [PATCH] comments --- src/app/db/schema/property.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/db/schema/property.ts b/src/app/db/schema/property.ts index 9ac0674..3d295e1 100644 --- a/src/app/db/schema/property.ts +++ b/src/app/db/schema/property.ts @@ -664,6 +664,7 @@ export const epcBuildingPart = pgTable( wallDryLined: boolean("wall_dry_lined"), wallThicknessMm: integer("wall_thickness_mm"), wallInsulationThickness: text("wall_insulation_thickness"), + // age band source // Floor floorHeatLoss: integer("floor_heat_loss"), @@ -736,8 +737,8 @@ export const epcWindow = pgTable( orientation: text("orientation").notNull(), windowType: text("window_type").notNull(), glazingType: text("glazing_type").notNull(), - windowWidth: real("window_width").notNull(), - windowHeight: real("window_height").notNull(), + windowWidth: real("window_width").notNull(), // add unit? + windowHeight: real("window_height").notNull(), // add unit? draughtProofed: boolean("draught_proofed").notNull(), windowLocation: text("window_location").notNull(), windowWallType: text("window_wall_type").notNull(),