From 99a5cbda77e2b79c15c27b9715eba1d38949b64f Mon Sep 17 00:00:00 2001 From: Thies Mueller Date: Fri, 8 Jan 2021 18:20:24 +0100 Subject: [PATCH] introducing passwordcode option in the database --- usertable.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usertable.sql b/usertable.sql index 62b44d3..99e52e5 100644 --- a/usertable.sql +++ b/usertable.sql @@ -7,5 +7,7 @@ CREATE TABLE `users` ( `lastName` VARCHAR(255) NOT NULL DEFAULT '' , `created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP , `updated_at` TIMESTAMP on update CURRENT_TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP , + `passwordcode` VARCHAR(255) NULL , + `passwordcode_time` TIMESTAMP NULL , PRIMARY KEY (`id`), UNIQUE (`email`), UNIQUE (`username`) ) ENGINE = InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file