add postcode to plan

This commit is contained in:
Daniel Roth 2026-05-06 14:03:00 +00:00
parent 6ad0d069ee
commit 09697884eb

View file

@ -3,8 +3,9 @@ import { pgTable, bigserial, text } from "drizzle-orm/pg-core";
export const magicPlanPlan = pgTable(
"magic_plan_plan",
{
id: bigserial("id", { mode: "bigint" }).primaryKey(),
name: text("name"),
address: text("address"),
id: bigserial("id", { mode: "bigint" }).primaryKey(),
name: text("name"),
address: text("address"),
postcode: text("postcode"),
},
);