mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
correct casing
This commit is contained in:
parent
e85eabf89d
commit
9f6eb888d9
2 changed files with 5 additions and 5 deletions
|
|
@ -8,7 +8,7 @@ export const magicPlanDoor = pgTable(
|
|||
roomId: bigint("magic_plan_room_id", { mode: "bigint" })
|
||||
.notNull()
|
||||
.references(() => magicPlanRoom.id),
|
||||
width_md: real("width_mm"),
|
||||
widthMm: real("width_mm"),
|
||||
type: text("type"),
|
||||
},
|
||||
);
|
||||
|
|
@ -8,9 +8,9 @@ export const magicPlanWindow = pgTable(
|
|||
roomId: bigint("magic_plan_room_id", { mode: "bigint" })
|
||||
.notNull()
|
||||
.references(() => magicPlanRoom.id),
|
||||
width_m: real("width_m"),
|
||||
height_m: real("height_m"),
|
||||
area_m2: real("area_m2"),
|
||||
opening_type: text("opening_type"),
|
||||
widthM: real("width_m"),
|
||||
heightM: real("height_m"),
|
||||
areaM2: real("area_m2"),
|
||||
openingType: text("opening_type"),
|
||||
},
|
||||
);
|
||||
Loading…
Add table
Reference in a new issue