basic db setup with drizzle

This commit is contained in:
Oliver Bryan
2025-12-07 22:55:02 +00:00
parent 7c43971087
commit 87e03b2a62
14 changed files with 475 additions and 15 deletions

View File

@@ -0,0 +1,5 @@
CREATE TABLE "User" (
"id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "User_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1),
"name" varchar(256) NOT NULL,
"username" varchar(32) NOT NULL
);