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