Added new material types for flat roof insulation to materials table

This commit is contained in:
Khalim Conn-Kowlessar 2023-12-04 18:31:51 +00:00
parent 86c0b3bcd1
commit 43e0e30a45
4 changed files with 1459 additions and 0 deletions

View file

@ -0,0 +1,3 @@
ALTER TYPE "type" ADD VALUE 'flat_roof_preparation';--> statement-breakpoint
ALTER TYPE "type" ADD VALUE 'flat_roof_vapour_barrier';--> statement-breakpoint
ALTER TYPE "type" ADD VALUE 'flat_roof_waterpoofing';

File diff suppressed because it is too large Load diff

View file

@ -393,6 +393,13 @@
"when": 1701714330225,
"tag": "0055_sour_overlord",
"breakpoints": true
},
{
"idx": 56,
"version": "5",
"when": 1701714679531,
"tag": "0056_gray_owl",
"breakpoints": true
}
]
}

View file

@ -36,6 +36,9 @@ export const MaterialType: [string, ...string[]] = [
"ewi_wall_preparation",
"ewi_wall_redecoration",
"low_energy_lighting_installation",
"flat_roof_preparation",
"flat_roof_vapour_barrier",
"flat_roof_waterpoofing",
];
export const materialTypeEnum = pgEnum("type", MaterialType);