diff options
Diffstat (limited to 'sql-files/main.sql')
-rw-r--r-- | sql-files/main.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql-files/main.sql b/sql-files/main.sql index d1c6364c6..2d4de5237 100644 --- a/sql-files/main.sql +++ b/sql-files/main.sql @@ -795,9 +795,9 @@ CREATE TABLE IF NOT EXISTS `quest` ( `quest_id` INT(10) UNSIGNED NOT NULL, `state` ENUM('0','1','2') NOT NULL DEFAULT '0', `time` INT(11) UNSIGNED NOT NULL DEFAULT '0', - `count1` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', - `count2` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', - `count3` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0', + `count1` INT(11) UNSIGNED NOT NULL DEFAULT '0', + `count2` INT(11) UNSIGNED NOT NULL DEFAULT '0', + `count3` INT(11) UNSIGNED NOT NULL DEFAULT '0', PRIMARY KEY (`char_id`,`quest_id`) ) ENGINE=MyISAM; |