This commit is contained in:
dpurbosakti
2025-08-14 16:09:31 +07:00
parent 3c84d0d662
commit aa871a95bb
11 changed files with 151 additions and 64 deletions

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")
);