mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 02:33:01 +00:00
basic db setup with drizzle
This commit is contained in:
5
drizzle/0000_chemical_whiplash.sql
Normal file
5
drizzle/0000_chemical_whiplash.sql
Normal 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
|
||||
);
|
||||
Reference in New Issue
Block a user