summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql-files/main.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql-files/main.sql b/sql-files/main.sql
index 7aebd73f..271c5c7a 100644
--- a/sql-files/main.sql
+++ b/sql-files/main.sql
@@ -834,8 +834,8 @@ CREATE TABLE IF NOT EXISTS `quest` (
`state` ENUM('0','1','2') NOT NULL DEFAULT '0',
`time` INT UNSIGNED NOT NULL DEFAULT '0',
`count1` MEDIUMINT UNSIGNED NOT NULL DEFAULT '0',
- `count2` MEDIUMINT UNSIGNED NOT NULL DEFAULT '0',
- `count3` MEDIUMINT UNSIGNED NOT NULL DEFAULT '0',
+ `count2` INT SIGNED NOT NULL DEFAULT '0',
+ `count3` INT SIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (`char_id`,`quest_id`)
) ENGINE=MyISAM;