mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
Added mechanical_ventilation as a material type
This commit is contained in:
parent
b270df8509
commit
fb40fe9e00
4 changed files with 1307 additions and 0 deletions
1
src/app/db/migrations/0039_old_nuke.sql
Normal file
1
src/app/db/migrations/0039_old_nuke.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TYPE "type" ADD VALUE 'mechanical_ventilation';
|
||||
1298
src/app/db/migrations/meta/0039_snapshot.json
Normal file
1298
src/app/db/migrations/meta/0039_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -274,6 +274,13 @@
|
|||
"when": 1696820822620,
|
||||
"tag": "0038_conscious_paper_doll",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 39,
|
||||
"version": "5",
|
||||
"when": 1697607380730,
|
||||
"tag": "0039_old_nuke",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -15,6 +15,7 @@ export const MaterialType: [string, ...string[]] = [
|
|||
"external_wall_insulation",
|
||||
"internal_wall_insulation",
|
||||
"cavity_wall_insulation",
|
||||
"mechanical_ventilation",
|
||||
];
|
||||
export const materialTypeEnum = pgEnum("type", MaterialType);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue