16 lines
495 B
SQL
16 lines
495 B
SQL
CREATE TABLE "users" (
|
|
"user_id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
|
"username" text NOT NULL,
|
|
"email" text NOT NULL,
|
|
"password" text NOT NULL,
|
|
"passwordToken" text,
|
|
"passwordTokenExpires" timestamp,
|
|
"active" boolean DEFAULT true NOT NULL,
|
|
"pingcode" numeric,
|
|
"lastLogin" timestamp DEFAULT now(),
|
|
"add_User" text DEFAULT 'LST_System' NOT NULL,
|
|
"add_Date" timestamp DEFAULT now(),
|
|
"upd_User" text DEFAULT 'LST_System' NOT NULL,
|
|
"upd_date" timestamp DEFAULT now()
|
|
);
|