mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
add postcode to plan
This commit is contained in:
parent
6ad0d069ee
commit
09697884eb
1 changed files with 4 additions and 3 deletions
|
|
@ -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"),
|
||||
},
|
||||
);
|
||||
Loading…
Add table
Reference in a new issue