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
785 changed files with 133828 additions and 126861 deletions

View File

@@ -19,7 +19,7 @@ DROP TABLE IF EXISTS `characters`;
CREATE TABLE IF NOT EXISTS `characters` (
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`account` int unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
`name` varchar(12) NOT NULL,
`name` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL,
`race` tinyint unsigned NOT NULL DEFAULT '0',
`class` tinyint unsigned NOT NULL DEFAULT '0',
`gender` tinyint unsigned NOT NULL DEFAULT '0',
@@ -41,7 +41,7 @@ CREATE TABLE IF NOT EXISTS `characters` (
`instance_id` int unsigned NOT NULL DEFAULT '0',
`instance_mode_mask` tinyint unsigned NOT NULL DEFAULT '0',
`orientation` float NOT NULL DEFAULT '0',
`taximask` text NOT NULL,
`taximask` text COLLATE utf8mb4_unicode_ci NOT NULL,
`online` tinyint unsigned NOT NULL DEFAULT '0',
`cinematic` tinyint unsigned NOT NULL DEFAULT '0',
`totaltime` int unsigned NOT NULL DEFAULT '0',
@@ -55,13 +55,13 @@ CREATE TABLE IF NOT EXISTS `characters` (
`trans_y` float NOT NULL DEFAULT '0',
`trans_z` float NOT NULL DEFAULT '0',
`trans_o` float NOT NULL DEFAULT '0',
`transguid` mediumint NOT NULL DEFAULT '0',
`transguid` int DEFAULT '0',
`extra_flags` smallint unsigned NOT NULL DEFAULT '0',
`stable_slots` tinyint unsigned NOT NULL DEFAULT '0',
`at_login` smallint unsigned NOT NULL DEFAULT '0',
`zone` smallint unsigned NOT NULL DEFAULT '0',
`death_expire_time` int unsigned NOT NULL DEFAULT '0',
`taxi_path` text,
`taxi_path` text COLLATE utf8mb4_unicode_ci,
`arenaPoints` int unsigned NOT NULL DEFAULT '0',
`totalHonorPoints` int unsigned NOT NULL DEFAULT '0',
`todayHonorPoints` int unsigned NOT NULL DEFAULT '0',
@@ -81,26 +81,27 @@ CREATE TABLE IF NOT EXISTS `characters` (
`power5` int unsigned NOT NULL DEFAULT '0',
`power6` int unsigned NOT NULL DEFAULT '0',
`power7` int unsigned NOT NULL DEFAULT '0',
`latency` mediumint unsigned NOT NULL DEFAULT '0',
`latency` int unsigned DEFAULT '0',
`talentGroupsCount` tinyint unsigned NOT NULL DEFAULT '1',
`activeTalentGroup` tinyint unsigned NOT NULL DEFAULT '0',
`exploredZones` longtext,
`equipmentCache` longtext,
`exploredZones` longtext COLLATE utf8mb4_unicode_ci,
`equipmentCache` longtext COLLATE utf8mb4_unicode_ci,
`ammoId` int unsigned NOT NULL DEFAULT '0',
`knownTitles` longtext,
`knownTitles` longtext COLLATE utf8mb4_unicode_ci,
`actionBars` tinyint unsigned NOT NULL DEFAULT '0',
`grantableLevels` tinyint unsigned NOT NULL DEFAULT '0',
`order` tinyint DEFAULT NULL,
`creation_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`deleteInfos_Account` int unsigned DEFAULT NULL,
`deleteInfos_Name` varchar(12) DEFAULT NULL,
`deleteInfos_Name` varchar(12) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`deleteDate` int unsigned DEFAULT NULL,
`innTriggerId` int unsigned NOT NULL,
`extraBonusTalentCount` int NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`),
KEY `idx_account` (`account`),
KEY `idx_online` (`online`),
KEY `idx_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
-- Dumping data for table acore_characters.characters: ~0 rows (approximately)
DELETE FROM `characters`;