release: DB squash & begin AC 4.0.0 development (#4341)
This commit is contained in:
parent
2d609e9e48
commit
49712bd12f
1014 changed files with 601786 additions and 462701 deletions
|
|
@ -9,24 +9,24 @@ DROP TABLE IF EXISTS `corpse`;
|
|||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `corpse`
|
||||
(
|
||||
`corpseGuid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
|
||||
`posX` float NOT NULL DEFAULT '0',
|
||||
`posY` float NOT NULL DEFAULT '0',
|
||||
`posZ` float NOT NULL DEFAULT '0',
|
||||
`orientation` float NOT NULL DEFAULT '0',
|
||||
`mapId` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
|
||||
`phaseMask` int(10) unsigned NOT NULL DEFAULT '1',
|
||||
`displayId` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`corpseGuid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
|
||||
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Character Global Unique Identifier',
|
||||
`posX` float NOT NULL DEFAULT 0,
|
||||
`posY` float NOT NULL DEFAULT 0,
|
||||
`posZ` float NOT NULL DEFAULT 0,
|
||||
`orientation` float NOT NULL DEFAULT 0,
|
||||
`mapId` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Map Identifier',
|
||||
`phaseMask` int(10) unsigned NOT NULL DEFAULT 1,
|
||||
`displayId` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`itemCache` text NOT NULL,
|
||||
`bytes1` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`bytes2` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`guildId` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`dynFlags` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`time` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`corpseType` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`instanceId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier',
|
||||
`bytes1` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`bytes2` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`guildId` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`flags` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`dynFlags` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`time` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`corpseType` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`instanceId` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Instance Identifier',
|
||||
PRIMARY KEY (`corpseGuid`),
|
||||
KEY `idx_type` (`corpseType`),
|
||||
KEY `idx_instance` (`instanceId`),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue