Fix wrong data type for core_revision in DB, again

--HG--
branch : trunk
This commit is contained in:
Paradox
2009-05-28 10:15:08 -04:00
parent d2fe68bfef
commit 79d8a77846
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -13746,7 +13746,7 @@ UNLOCK TABLES;
DROP TABLE IF EXISTS `version`;
CREATE TABLE `version` (
`core_version` varchar(120) default NULL COMMENT 'Core revision dumped at startup.',
`core_revision` BIGINT UNSIGNED default '0',
`core_revision` varchar(120) default '0',
`db_version` varchar(120) default NULL COMMENT 'Version of world DB.',
`script_version` varchar(120) default NULL COMMENT 'Version of scripts DB.'
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Version Notes';