mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-30 12:55:02 +00:00
change door width to mm
This commit is contained in:
parent
dd02b7f85d
commit
855cf2a10b
1 changed files with 4 additions and 4 deletions
|
|
@ -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"),
|
||||
},
|
||||
);
|
||||
Loading…
Add table
Reference in a new issue