Update 10-create_request_reset_password.sql

This commit is contained in:
xfarrow 2024-03-25 17:44:06 +01:00
parent 2abf27a7c7
commit 468e70c22b
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ CREATE TABLE IF NOT EXISTS public."RequestResetPassword"
id serial,
email character varying(128) NOT NULL,
secret character varying NOT NULL,
time_of_request timestamp with time zone NOT NULL DEFAULT now(),
time_of_request timestamp without time zone NOT NULL DEFAULT now(),
CONSTRAINT "RequestResetPassword_pkey" PRIMARY KEY (id)
)