mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-30 12:55:02 +00:00
added whlg
This commit is contained in:
parent
e9bd3f90d5
commit
cceaafe855
1 changed files with 11 additions and 0 deletions
11
src/app/db/schema/whlg.ts
Normal file
11
src/app/db/schema/whlg.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import {
|
||||
pgTable,
|
||||
text,
|
||||
bigserial,
|
||||
} from "drizzle-orm/pg-core";
|
||||
|
||||
export const whlg = pgTable("whlg", {
|
||||
id: bigserial("id", { mode: "bigint" }).primaryKey(),
|
||||
postcode: text("postcode").notNull(),
|
||||
});
|
||||
|
||||
Loading…
Add table
Reference in a new issue