added estimated boolean to property details epc table

This commit is contained in:
Khalim Conn-Kowlessar 2024-01-04 08:56:56 +00:00
parent 1fbaeae85a
commit 6be23db727
4 changed files with 1463 additions and 0 deletions

View file

@ -0,0 +1 @@
ALTER TABLE "property_details_epc" ADD COLUMN "estimated" boolean DEFAULT false;

File diff suppressed because it is too large Load diff

View file

@ -414,6 +414,13 @@
"when": 1703082901714,
"tag": "0058_aromatic_valeria_richards",
"breakpoints": true
},
{
"idx": 59,
"version": "5",
"when": 1704358571887,
"tag": "0059_wonderful_sharon_carter",
"breakpoints": true
}
]
}

View file

@ -164,6 +164,7 @@ export const propertyDetailsEpc = pgTable("property_details_epc", {
primaryEnergyConsumption: real("primary_energy_consumption"),
co2Emissions: real("co2_emissions"),
adjustedEnergyConsumption: real("adjusted_energy_consumption"),
estimated: boolean("estimated").default(false),
});
export const propertyDetailsSpatial = pgTable("property_details_spatial", {