refactor(DB/SQL): Update integer & utf to MySQL's new standards (#4929)

This commit is contained in:
Kitzunu 2021-03-24 15:50:06 +01:00 committed by GitHub
parent 2105305f55
commit e0d36be56e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
379 changed files with 3757 additions and 3748 deletions

View file

@ -6,33 +6,33 @@
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
DROP TABLE IF EXISTS `corpse`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
/*!40101 SET character_set_client = UTF8MB4 */;
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',
`corpseGuid` INT unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`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(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,
`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(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 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 (`corpseGuid`),
KEY `idx_type` (`corpseType`),
KEY `idx_instance` (`instanceId`),
KEY `idx_player` (`guid`),
KEY `idx_time` (`time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Death System';
) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4 COMMENT='Death System';
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `corpse` WRITE;