wip
This commit is contained in:
No files matched your search
@@ -0,0 +1,12 @@
|
||||
-- Create "User" table
|
||||
CREATE TABLE "User" (
|
||||
"Id" bigserial NOT NULL,
|
||||
"CreatedAt" text NULL,
|
||||
"UpdatedAt" text NULL,
|
||||
"DeteledAt" timestamptz NULL,
|
||||
"Name" character varying(25) NOT NULL,
|
||||
"Password" character varying(255) NOT NULL,
|
||||
"Status_Code" character varying(10) NOT NULL,
|
||||
"FailedLoginCount" smallint NULL,
|
||||
PRIMARY KEY ("Id")
|
||||
);
|
||||
Reference in New Issue
Block a user