diff options
Diffstat (limited to 'sql-files/upgrades')
-rw-r--r-- | sql-files/upgrades/2018-08-03--11-37.sql | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sql-files/upgrades/2018-08-03--11-37.sql b/sql-files/upgrades/2018-08-03--11-37.sql index c9a532b26..90e82534a 100644 --- a/sql-files/upgrades/2018-08-03--11-37.sql +++ b/sql-files/upgrades/2018-08-03--11-37.sql @@ -24,7 +24,9 @@ ALTER TABLE `quest` CHANGE `count3` `count3` INT(11) UNSIGNED NOT NULL DEFAULT ' CREATE TABLE IF NOT EXISTS `discord` ( `account_id` INT(11) UNSIGNED NOT NULL DEFAULT '0', - `discord_id` VARCHAR(255) NOT NULL DEFAULT '' + `discord_id` VARCHAR(255) NOT NULL DEFAULT '', + `discord_name` VARCHAR(255) NOT NULL DEFAULT '', + `verified` ENUM(0, 1) NOT NULL DEFAULT '0' ) ENGINE=MyISAM; |