feat(DB): release ACDB 7.0.0 (#12811)
* feat(DB): release ACDB 7.0.0 * cleanup * we try sourcery
This commit is contained in:
parent
4cd3b9c203
commit
3daa8e2146
739 changed files with 197091 additions and 167873 deletions
|
|
@ -15,23 +15,23 @@
|
|||
-- Dumpar struktur för tabell acore_characters.corpse
|
||||
DROP TABLE IF EXISTS `corpse`;
|
||||
CREATE TABLE IF NOT EXISTS `corpse` (
|
||||
`guid` INT 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 unsigned NOT NULL DEFAULT 0 COMMENT 'Map Identifier',
|
||||
`phaseMask` INT unsigned NOT NULL DEFAULT 1,
|
||||
`displayId` INT unsigned NOT NULL DEFAULT 0,
|
||||
`guid` int 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 unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
|
||||
`phaseMask` int unsigned NOT NULL DEFAULT '1',
|
||||
`displayId` int unsigned NOT NULL DEFAULT '0',
|
||||
`itemCache` text NOT NULL,
|
||||
`bytes1` INT unsigned NOT NULL DEFAULT 0,
|
||||
`bytes2` INT unsigned NOT NULL DEFAULT 0,
|
||||
`guildId` INT unsigned NOT NULL DEFAULT 0,
|
||||
`flags` TINYINT unsigned NOT NULL DEFAULT 0,
|
||||
`dynFlags` TINYINT unsigned NOT NULL DEFAULT 0,
|
||||
`time` INT unsigned NOT NULL DEFAULT 0,
|
||||
`corpseType` TINYINT unsigned NOT NULL DEFAULT 0,
|
||||
`instanceId` INT unsigned NOT NULL DEFAULT 0 COMMENT 'Instance Identifier',
|
||||
`bytes1` int unsigned NOT NULL DEFAULT '0',
|
||||
`bytes2` int unsigned NOT NULL DEFAULT '0',
|
||||
`guildId` int unsigned NOT NULL DEFAULT '0',
|
||||
`flags` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`dynFlags` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`time` int unsigned NOT NULL DEFAULT '0',
|
||||
`corpseType` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`instanceId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier',
|
||||
PRIMARY KEY (`guid`),
|
||||
KEY `idx_type` (`corpseType`),
|
||||
KEY `idx_instance` (`instanceId`),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue