diff --git a/backend/sql/10-create_request_reset_password.sql b/backend/sql/10-create_request_reset_password.sql index 2e6d5c0..559bf86 100644 --- a/backend/sql/10-create_request_reset_password.sql +++ b/backend/sql/10-create_request_reset_password.sql @@ -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) )