feat(DB): release ACDB 7.0.0 (#12811)

* feat(DB): release ACDB 7.0.0

* cleanup

* we try sourcery
This commit is contained in:
Kitzunu 2022-08-21 12:31:37 +02:00 committed by GitHub
parent 4cd3b9c203
commit 3daa8e2146
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
739 changed files with 197091 additions and 167873 deletions

View file

@ -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`),