diff --git a/src/app/db/schema/magic_plan/plan.ts b/src/app/db/schema/magic_plan/plan.ts index 921d9cf..186f37f 100644 --- a/src/app/db/schema/magic_plan/plan.ts +++ b/src/app/db/schema/magic_plan/plan.ts @@ -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"), }, ); \ No newline at end of file