This commit is contained in:
CHIEFSOFT\ameye
2025-08-17 07:08:54 -04:00
parent a7cc90e75a
commit 5de1c67ef7
2 changed files with 15 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
SELECT uuid_generate_v4();
CREATE TABLE password_reset (
id SERIAL,
uid uuid DEFAULT uuid_generate_v4(),
username VARCHAR(35) NOT NULL ,
status INT DEFAULT 0,
added timestamp without time zone DEFAULT now(),
updated timestamp without time zone DEFAULT now()
);
ALTER TABLE ONLY password_reset
ADD CONSTRAINT password_reset_id_key UNIQUE (id);
+2
View File
@@ -44,3 +44,5 @@ Flask-Mail
pycountry
stripe
requests