new data
This commit is contained in:
@@ -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);
|
||||||
@@ -44,3 +44,5 @@ Flask-Mail
|
|||||||
pycountry
|
pycountry
|
||||||
|
|
||||||
stripe
|
stripe
|
||||||
|
|
||||||
|
requests
|
||||||
Reference in New Issue
Block a user