Added mechanical_ventilation as a material type

This commit is contained in:
Khalim Conn-Kowlessar 2023-10-18 16:36:54 +11:00
parent b270df8509
commit fb40fe9e00
4 changed files with 1307 additions and 0 deletions

View file

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

File diff suppressed because it is too large Load diff

View file

@ -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
}
]
}

View file

@ -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);