This commit is contained in:
Daniel Roth 2026-05-06 13:58:51 +00:00
parent 19df0e2cd5
commit a1b086f18e

View file

@ -5,7 +5,7 @@ export const magicPlanRoom = pgTable(
"magic_plan_room",
{
id: bigserial("id", { mode: "bigint" }).primaryKey(),
floorId: bigint("magic_plan_floor_id", { mode: "bigint" })
floorId: bigint("magic_plan_floor_id", { mode: "bigint" })
.notNull()
.references(() => magicPlanFloor.id),
name: text("name"),