mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
changed quantity_unit value
This commit is contained in:
parent
495fbd05f6
commit
0bcf1e0a3c
4 changed files with 1305 additions and 1 deletions
1
src/app/db/migrations/0037_awesome_harry_osborn.sql
Normal file
1
src/app/db/migrations/0037_awesome_harry_osborn.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TYPE "unit_quantity" ADD VALUE 'm2';
|
||||
1296
src/app/db/migrations/meta/0037_snapshot.json
Normal file
1296
src/app/db/migrations/meta/0037_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -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
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -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", {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue