added whlg

This commit is contained in:
Jun-te Kim 2025-11-14 11:28:28 +00:00
parent e9bd3f90d5
commit cceaafe855

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