mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-30 12:55:02 +00:00
Merge branch 'main' of https://github.com/Hestia-Homes/assessment-model into new-reporting
This commit is contained in:
commit
d4a4b0d019
2 changed files with 18 additions and 0 deletions
|
|
@ -890,6 +890,13 @@
|
|||
"when": 1762892339561,
|
||||
"tag": "0126_third_hawkeye",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 127,
|
||||
"version": "7",
|
||||
"when": 1763119819059,
|
||||
"tag": "0127_acoustic_sleepwalker",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
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