mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
Added loft insulation as a new material type
This commit is contained in:
parent
72aea7e025
commit
6571b4756c
6 changed files with 2609 additions and 0 deletions
1
src/app/db/migrations/0040_dashing_giant_man.sql
Normal file
1
src/app/db/migrations/0040_dashing_giant_man.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TYPE "cost_unit" ADD VALUE 'gbp_per_unit';
|
||||
1
src/app/db/migrations/0041_dapper_silver_surfer.sql
Normal file
1
src/app/db/migrations/0041_dapper_silver_surfer.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TYPE "type" ADD VALUE 'loft_insulation';
|
||||
1299
src/app/db/migrations/meta/0040_snapshot.json
Normal file
1299
src/app/db/migrations/meta/0040_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
1300
src/app/db/migrations/meta/0041_snapshot.json
Normal file
1300
src/app/db/migrations/meta/0041_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -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
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue