diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-10-16 19:39:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-10-16 19:39:53 -0300 |
commit | db783bdca57192a4c8b6ffc0aed509e00ce03d15 (patch) | |
tree | ac8e791ebe41e4aa17f545e88a0f2cfcda41a076 /npc/003-3 | |
parent | 979164a8d796c27b1db34376fc380b3a851369f8 (diff) | |
download | serverdata-db783bdca57192a4c8b6ffc0aed509e00ce03d15.tar.gz serverdata-db783bdca57192a4c8b6ffc0aed509e00ce03d15.tar.bz2 serverdata-db783bdca57192a4c8b6ffc0aed509e00ce03d15.tar.xz serverdata-db783bdca57192a4c8b6ffc0aed509e00ce03d15.zip |
Update Discord table fields to be discord-bot compliant
Diffstat (limited to 'npc/003-3')
-rw-r--r-- | npc/003-3/malindou.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/003-3/malindou.txt b/npc/003-3/malindou.txt index 7f242e96a..a8789a065 100644 --- a/npc/003-3/malindou.txt +++ b/npc/003-3/malindou.txt @@ -130,10 +130,10 @@ OnInit: // Current UPDATE value: Ter Out 16 17:17:20 -03 2018 // This is a hack because I'm too lazy to be bothered with standard SQL Upgrade system if ($UPDATE < 1539721040) { - query_sql("CREATE TABLE IF NOT EXISTS `discord` (`account_id` INT(11) UNSIGNED NOT NULL DEFAULT '0',`discord_id` VARCHAR(255) NOT NULL DEFAULT '') ENGINE=MyISAM"); + query_sql("CREATE TABLE IF NOT EXISTS `discord` (`account_id` INT(11) UNSIGNED NOT NULL DEFAULT '0',`discord_id` VARCHAR(255) NOT NULL DEFAULT '',`discord_name` VARCHAR(255) NOT NULL DEFAULT '',`verified` ENUM(0, 1) NOT NULL DEFAULT '0') ENGINE=MyISAM"); $UPDATE=1539721040; debugmes ""; - debugmes "* SQL Upgrade (will not work on new installations)"; + debugmes "* SQL Upgrade (no effect on new installations)"; debugmes ""; } |