Added new unit to materials table

This commit is contained in:
Khalim Conn-Kowlessar 2023-12-04 18:27:12 +00:00
parent ffc14bd630
commit 86c0b3bcd1
4 changed files with 1452 additions and 0 deletions

View file

@ -0,0 +1 @@
ALTER TYPE "cost_unit" ADD VALUE 'gbp_per_m';

File diff suppressed because it is too large Load diff

View file

@ -386,6 +386,13 @@
"when": 1701440165529,
"tag": "0054_sharp_mojo",
"breakpoints": true
},
{
"idx": 55,
"version": "5",
"when": 1701714330225,
"tag": "0055_sour_overlord",
"breakpoints": true
}
]
}

View file

@ -46,6 +46,7 @@ export const CostUnit: [string, ...string[]] = [
"gbp_sq_meter",
"gbp_per_unit",
"gbp_per_m2",
"gbp_per_m",
];
export const costUnitEnum = pgEnum("cost_unit", CostUnit);