mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/DB: Adjust max values for some columns in character_queststatus
--HG-- branch : trunk
This commit is contained in:
@@ -855,20 +855,20 @@ DROP TABLE IF EXISTS `character_queststatus`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `character_queststatus` (
|
||||
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
|
||||
`quest` int(11) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
|
||||
`status` int(11) unsigned NOT NULL default '0',
|
||||
`rewarded` tinyint(1) unsigned NOT NULL default '0',
|
||||
`explored` tinyint(1) unsigned NOT NULL default '0',
|
||||
`timer` bigint(20) unsigned NOT NULL default '0',
|
||||
`mobcount1` int(11) unsigned NOT NULL default '0',
|
||||
`mobcount2` int(11) unsigned NOT NULL default '0',
|
||||
`mobcount3` int(11) unsigned NOT NULL default '0',
|
||||
`mobcount4` int(11) unsigned NOT NULL default '0',
|
||||
`itemcount1` int(11) unsigned NOT NULL default '0',
|
||||
`itemcount2` int(11) unsigned NOT NULL default '0',
|
||||
`itemcount3` int(11) unsigned NOT NULL default '0',
|
||||
`itemcount4` int(11) unsigned NOT NULL default '0',
|
||||
`guid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`quest` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
||||
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
||||
`rewarded` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
||||
`explored` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
||||
`timer` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||||
`mobcount1` smallint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`mobcount2` smallint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`mobcount3` smallint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`mobcount4` smallint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`itemcount1` smallint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`itemcount2` smallint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`itemcount3` smallint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`itemcount4` smallint(3) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`,`quest`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
Reference in New Issue
Block a user