correct casing

This commit is contained in:
Daniel Roth 2026-05-06 13:57:49 +00:00
parent e85eabf89d
commit 9f6eb888d9
2 changed files with 5 additions and 5 deletions

View file

@ -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"),
},
);

View file

@ -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"),
},
);