diff --git a/fullinstalldocker.sql b/fullinstalldocker.sql index 2c1a770..79bf3c7 100644 --- a/fullinstalldocker.sql +++ b/fullinstalldocker.sql @@ -13,6 +13,7 @@ CREATE TABLE `users` ( `updated_at` TIMESTAMP on update CURRENT_TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP , `activationcode` VARCHAR(255) NULL , `activationcode_time` TIMESTAMP NULL , + `activated` BOOLEAN , `passwordcode` VARCHAR(255) NULL , `passwordcode_time` TIMESTAMP NULL , PRIMARY KEY (`id`), UNIQUE (`email`), UNIQUE (`username`) diff --git a/usertable.sql b/usertable.sql index 3a2cb45..b01b13d 100644 --- a/usertable.sql +++ b/usertable.sql @@ -9,6 +9,7 @@ CREATE TABLE `users` ( `updated_at` TIMESTAMP on update CURRENT_TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP , `activationcode` VARCHAR(255) NULL , `activationcode_time` TIMESTAMP NULL , + `activated` BOOLEAN , `passwordcode` VARCHAR(255) NULL , `passwordcode_time` TIMESTAMP NULL , PRIMARY KEY (`id`), UNIQUE (`email`), UNIQUE (`username`)