changed quantity_unit value

This commit is contained in:
Khalim Conn-Kowlessar 2023-08-21 14:15:05 +01:00
parent 495fbd05f6
commit 0bcf1e0a3c
4 changed files with 1305 additions and 1 deletions

View file

@ -0,0 +1 @@
ALTER TYPE "unit_quantity" ADD VALUE 'm2';

File diff suppressed because it is too large Load diff

View file

@ -260,6 +260,13 @@
"when": 1692623295104,
"tag": "0036_real_stryfe",
"breakpoints": true
},
{
"idx": 37,
"version": "5",
"when": 1692623678223,
"tag": "0037_awesome_harry_osborn",
"breakpoints": true
}
]
}

View file

@ -37,7 +37,7 @@ export const recommendation = pgTable("recommendation", {
totalWorkHours: real("total_work_hours"),
});
export const unitQuantity: [string, ...string[]] = ["meters_squared"];
export const unitQuantity: [string, ...string[]] = ["m2"];
export const unitQuantityEnum = pgEnum("unit_quantity", unitQuantity);
export const recommendationMaterials = pgTable("recommendation_materials", {