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

View File

@@ -62,7 +62,7 @@ CREATE TABLE `creature_ai_texts` (
CREATE TABLE IF NOT EXISTS `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';