add new column to plan table

This commit is contained in:
Daniel Roth 2026-05-07 14:01:18 +00:00
parent 4c5dd5c68c
commit fefe7d25e4

View file

@ -3,9 +3,10 @@ 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"),
postcode: text("postcode"),
id: bigserial("id", { mode: "bigint" }).primaryKey(),
magic_plan_uid: text("magic_plan_uid"),
name: text("name"),
address: text("address"),
postcode: text("postcode"),
},
);