Added exposed floor insulation to materials table

This commit is contained in:
Khalim Conn-Kowlessar 2023-10-24 15:57:44 +08:00
parent 6571b4756c
commit 83616e699e
4 changed files with 1310 additions and 0 deletions

View file

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

File diff suppressed because it is too large Load diff

View file

@ -295,6 +295,13 @@
"when": 1697788983167,
"tag": "0041_dapper_silver_surfer",
"breakpoints": true
},
{
"idx": 42,
"version": "5",
"when": 1698134217344,
"tag": "0042_past_shape",
"breakpoints": true
}
]
}

View file

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