mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-30 12:55:02 +00:00
Merge pull request #326 from Hestia-Homes/feature/wall-insulation-jsonb
Make wall insulation thickness jsonb
This commit is contained in:
commit
198d9706d4
4 changed files with 11507 additions and 1 deletions
1
src/app/db/migrations/0243_oval_pestilence.sql
Normal file
1
src/app/db/migrations/0243_oval_pestilence.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE "epc_building_part" ALTER COLUMN "wall_insulation_thickness" SET DATA TYPE jsonb;
|
||||
11498
src/app/db/migrations/meta/0243_snapshot.json
Normal file
11498
src/app/db/migrations/meta/0243_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1695,6 +1695,13 @@
|
|||
"when": 1782309144861,
|
||||
"tag": "0242_green_meggan",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 243,
|
||||
"version": "7",
|
||||
"when": 1782313328071,
|
||||
"tag": "0243_oval_pestilence",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -711,7 +711,7 @@ export const epcBuildingPart = pgTable(
|
|||
buildingPartNumber: integer("building_part_number"),
|
||||
wallDryLined: boolean("wall_dry_lined"),
|
||||
wallThicknessMm: integer("wall_thickness_mm"),
|
||||
wallInsulationThickness: text("wall_insulation_thickness"),
|
||||
wallInsulationThickness: jsonb("wall_insulation_thickness"),
|
||||
// age band source
|
||||
|
||||
// Floor
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue