feat(DB): Release ACDB 9.0.0 (#16069)

* squishy
This commit is contained in:
Gultask 2023-04-25 01:48:38 -03:00 committed by GitHub
parent df77b5f4f7
commit 5ca6fe6fda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
785 changed files with 133828 additions and 126861 deletions

View file

@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `corpse` (
`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,
`itemCache` text COLLATE utf8mb4_unicode_ci NOT NULL,
`bytes1` int unsigned NOT NULL DEFAULT '0',
`bytes2` int unsigned NOT NULL DEFAULT '0',
`guildId` int unsigned NOT NULL DEFAULT '0',
@ -38,7 +38,7 @@ CREATE TABLE IF NOT EXISTS `corpse` (
KEY `idx_type` (`corpseType`),
KEY `idx_instance` (`instanceId`),
KEY `idx_time` (`time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Death System';
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Death System';
-- Dumping data for table acore_characters.corpse: ~0 rows (approximately)
DELETE FROM `corpse`;