Merge branch 'main' of https://github.com/Hestia-Homes/assessment-model into new-reporting

This commit is contained in:
Khalim Conn-Kowlessar 2025-11-25 11:06:45 +00:00
commit d4a4b0d019
2 changed files with 18 additions and 0 deletions

View file

@ -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
View 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(),
});