Added loft insulation as a new material type

This commit is contained in:
Khalim Conn-Kowlessar 2023-10-20 19:03:30 +11:00
parent 72aea7e025
commit 6571b4756c
6 changed files with 2609 additions and 0 deletions

View file

@ -0,0 +1 @@
ALTER TYPE "cost_unit" ADD VALUE 'gbp_per_unit';

View file

@ -0,0 +1 @@
ALTER TYPE "type" ADD VALUE 'loft_insulation';

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -288,6 +288,13 @@
"when": 1697607635913,
"tag": "0040_dashing_giant_man",
"breakpoints": true
},
{
"idx": 41,
"version": "5",
"when": 1697788983167,
"tag": "0041_dapper_silver_surfer",
"breakpoints": true
}
]
}

View file

@ -16,6 +16,7 @@ export const MaterialType: [string, ...string[]] = [
"internal_wall_insulation",
"cavity_wall_insulation",
"mechanical_ventilation",
"loft_insulation",
];
export const materialTypeEnum = pgEnum("type", MaterialType);