From 0e969ccd8d84ba1c383f194b2bd62f6ec83f32e2 Mon Sep 17 00:00:00 2001 From: Marco Date: Sun, 30 Jul 2017 14:40:11 +0200 Subject: [PATCH] Update MySQL schema to include 'resettable' column in 'users' table --- Database/MySQL.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/Database/MySQL.sql b/Database/MySQL.sql index e768108..8cd9d94 100644 --- a/Database/MySQL.sql +++ b/Database/MySQL.sql @@ -14,6 +14,7 @@ CREATE TABLE IF NOT EXISTS `users` ( `username` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(2) unsigned NOT NULL DEFAULT '0', `verified` tinyint(1) unsigned NOT NULL DEFAULT '0', + `resettable` tinyint(1) unsigned NOT NULL DEFAULT '1', `roles_mask` int(10) unsigned NOT NULL DEFAULT '0', `registered` int(10) unsigned NOT NULL, `last_login` int(10) unsigned DEFAULT NULL,