13 lines
349 B
SQL
13 lines
349 B
SQL
-- 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")
|
|
);
|