Merge pull request #139 from Hestia-Homes/feature/whlg_drizzle

Feature/whlg drizzle
This commit is contained in:
Jun-te Kim 2025-11-14 11:31:19 +00:00 committed by GitHub
commit 41925276aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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(),
});