rename magic plan plan plan_name to name

This commit is contained in:
Daniel Roth 2026-05-06 13:54:29 +00:00
parent a8c5e7e923
commit d63cfe6828

View file

@ -4,7 +4,7 @@ export const magicPlanPlan = pgTable(
"magic_plan_plan",
{
id: bigserial("id", { mode: "bigint" }).primaryKey(),
planName: text("plan_name"),
name: text("name"),
address: text("address"),
},
);