From 468e70c22bba160bce4cef8fb6e9515a17a5463a Mon Sep 17 00:00:00 2001 From: xfarrow Date: Mon, 25 Mar 2024 17:44:06 +0100 Subject: [PATCH] Update 10-create_request_reset_password.sql --- backend/sql/10-create_request_reset_password.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) )