diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-08-03 11:42:25 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-08-03 12:05:31 -0300 |
commit | 5aa67a4b49b6cfdcb45203c72a5671b163216313 (patch) | |
tree | 473c4ea67d69a229cb1ea82749bf93e34f88b38c /sql-files/main.sql | |
parent | 9297de9b9595f34540da18574ad1c1af8831db0d (diff) | |
download | serverdata-5aa67a4b49b6cfdcb45203c72a5671b163216313.tar.gz serverdata-5aa67a4b49b6cfdcb45203c72a5671b163216313.tar.bz2 serverdata-5aa67a4b49b6cfdcb45203c72a5671b163216313.tar.xz serverdata-5aa67a4b49b6cfdcb45203c72a5671b163216313.zip |
This will revert the need of santime - the brute force way.
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; |