Added new material types to db

This commit is contained in:
Khalim Conn-Kowlessar 2023-11-17 14:41:09 +00:00
parent 83616e699e
commit 58d02ac217
4 changed files with 1314 additions and 0 deletions

View file

@ -0,0 +1,2 @@
ALTER TYPE "type" ADD VALUE 'flat_roof_insulation';--> statement-breakpoint
ALTER TYPE "type" ADD VALUE 'room_roof_insulation';

File diff suppressed because it is too large Load diff

View file

@ -302,6 +302,13 @@
"when": 1698134217344,
"tag": "0042_past_shape",
"breakpoints": true
},
{
"idx": 43,
"version": "5",
"when": 1700232042052,
"tag": "0043_dear_lockheed",
"breakpoints": true
}
]
}

View file

@ -18,6 +18,8 @@ export const MaterialType: [string, ...string[]] = [
"mechanical_ventilation",
"loft_insulation",
"exposed_floor_insulation",
"flat_roof_insulation",
"room_roof_insulation",
];
export const materialTypeEnum = pgEnum("type", MaterialType);