From 855cf2a10b6229d54271886843f3c9f86a0b45d8 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 6 May 2026 13:56:46 +0000 Subject: [PATCH] change door width to mm --- src/app/db/schema/magic_plan/door.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/db/schema/magic_plan/door.ts b/src/app/db/schema/magic_plan/door.ts index f4770227..69523cfb 100644 --- a/src/app/db/schema/magic_plan/door.ts +++ b/src/app/db/schema/magic_plan/door.ts @@ -4,11 +4,11 @@ import { magicPlanRoom } from "./room"; export const magicPlanDoor = pgTable( "magic_plan_door", { - id: bigserial("id", { mode: "bigint" }).primaryKey(), - roomId: bigint("magic_plan_room_id", { mode: "bigint" }) + id: bigserial("id", { mode: "bigint" }).primaryKey(), + roomId: bigint("magic_plan_room_id", { mode: "bigint" }) .notNull() .references(() => magicPlanRoom.id), - width_m: real("width_m"), - type: text("type"), + width_md: real("width_mm"), + type: text("type"), }, ); \ No newline at end of file