diff --git a/data/sql/base/db_auth/account.sql b/data/sql/base/db_auth/account.sql index f84a0f6e2..9bd8a02f4 100644 --- a/data/sql/base/db_auth/account.sql +++ b/data/sql/base/db_auth/account.sql @@ -43,7 +43,7 @@ CREATE TABLE IF NOT EXISTS `account` ( `totaltime` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_username` (`username`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Account System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Account System'; -- Dumping data for table acore_auth.account: ~0 rows (approximately) DELETE FROM `account`; diff --git a/data/sql/base/db_auth/account_access.sql b/data/sql/base/db_auth/account_access.sql index 7da1a4a23..c3d9d4854 100644 --- a/data/sql/base/db_auth/account_access.sql +++ b/data/sql/base/db_auth/account_access.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `account_access` ( `RealmID` int NOT NULL DEFAULT '-1', `comment` varchar(255) DEFAULT '', PRIMARY KEY (`id`,`RealmID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_auth.account_access: ~0 rows (approximately) DELETE FROM `account_access`; diff --git a/data/sql/base/db_auth/account_banned.sql b/data/sql/base/db_auth/account_banned.sql index 86c6937f5..18d2518d5 100644 --- a/data/sql/base/db_auth/account_banned.sql +++ b/data/sql/base/db_auth/account_banned.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `account_banned` ( `banreason` varchar(255) NOT NULL, `active` tinyint unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`,`bandate`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Ban List'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Ban List'; -- Dumping data for table acore_auth.account_banned: ~0 rows (approximately) DELETE FROM `account_banned`; diff --git a/data/sql/base/db_auth/autobroadcast.sql b/data/sql/base/db_auth/autobroadcast.sql index c29a283e9..725bdcc1b 100644 --- a/data/sql/base/db_auth/autobroadcast.sql +++ b/data/sql/base/db_auth/autobroadcast.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `autobroadcast` ( `weight` tinyint unsigned DEFAULT '1', `text` longtext NOT NULL, PRIMARY KEY (`id`,`realmid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_auth.autobroadcast: ~0 rows (approximately) DELETE FROM `autobroadcast`; diff --git a/data/sql/base/db_auth/build_info.sql b/data/sql/base/db_auth/build_info.sql index 6654ccdfa..44ad5a0ed 100644 --- a/data/sql/base/db_auth/build_info.sql +++ b/data/sql/base/db_auth/build_info.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `build_info` ( `winChecksumSeed` varchar(40) DEFAULT NULL, `macChecksumSeed` varchar(40) DEFAULT NULL, PRIMARY KEY (`build`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_auth.build_info: ~11 rows (approximately) DELETE FROM `build_info`; diff --git a/data/sql/base/db_auth/ip_banned.sql b/data/sql/base/db_auth/ip_banned.sql index 6ee752df4..5a4a3c8a6 100644 --- a/data/sql/base/db_auth/ip_banned.sql +++ b/data/sql/base/db_auth/ip_banned.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `ip_banned` ( `bannedby` varchar(50) NOT NULL DEFAULT '[Console]', `banreason` varchar(255) NOT NULL DEFAULT 'no reason', PRIMARY KEY (`ip`,`bandate`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Banned IPs'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Banned IPs'; -- Dumping data for table acore_auth.ip_banned: ~0 rows (approximately) DELETE FROM `ip_banned`; diff --git a/data/sql/base/db_auth/logs.sql b/data/sql/base/db_auth/logs.sql index 525107fc5..d13f105e6 100644 --- a/data/sql/base/db_auth/logs.sql +++ b/data/sql/base/db_auth/logs.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `logs` ( `type` varchar(250) NOT NULL, `level` tinyint unsigned NOT NULL DEFAULT '0', `string` text -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_auth.logs: ~0 rows (approximately) DELETE FROM `logs`; diff --git a/data/sql/base/db_auth/logs_ip_actions.sql b/data/sql/base/db_auth/logs_ip_actions.sql index af168641d..f3ba8ccb2 100644 --- a/data/sql/base/db_auth/logs_ip_actions.sql +++ b/data/sql/base/db_auth/logs_ip_actions.sql @@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `logs_ip_actions` ( `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Timestamp', `comment` text COMMENT 'Allows users to add a comment', PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Used to log ips of individual actions'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Used to log ips of individual actions'; -- Dumping data for table acore_auth.logs_ip_actions: ~0 rows (approximately) DELETE FROM `logs_ip_actions`; diff --git a/data/sql/base/db_auth/realmcharacters.sql b/data/sql/base/db_auth/realmcharacters.sql index 3c2b62e6a..61cd7a55c 100644 --- a/data/sql/base/db_auth/realmcharacters.sql +++ b/data/sql/base/db_auth/realmcharacters.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `realmcharacters` ( `numchars` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`realmid`,`acctid`), KEY `acctid` (`acctid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Realm Character Tracker'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Realm Character Tracker'; -- Dumping data for table acore_auth.realmcharacters: ~0 rows (approximately) DELETE FROM `realmcharacters`; diff --git a/data/sql/base/db_auth/realmlist.sql b/data/sql/base/db_auth/realmlist.sql index 37f077dc9..1bbf1426f 100644 --- a/data/sql/base/db_auth/realmlist.sql +++ b/data/sql/base/db_auth/realmlist.sql @@ -32,7 +32,7 @@ CREATE TABLE IF NOT EXISTS `realmlist` ( PRIMARY KEY (`id`), UNIQUE KEY `idx_name` (`name`), CONSTRAINT `realmlist_chk_1` CHECK ((`population` >= 0)) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Realm System'; +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='Realm System'; -- Dumping data for table acore_auth.realmlist: ~0 rows (approximately) DELETE FROM `realmlist`; diff --git a/data/sql/base/db_auth/secret_digest.sql b/data/sql/base/db_auth/secret_digest.sql index 5537646d5..d3b3de10c 100644 --- a/data/sql/base/db_auth/secret_digest.sql +++ b/data/sql/base/db_auth/secret_digest.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `secret_digest` ( `id` int unsigned NOT NULL, `digest` varchar(100) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_auth.secret_digest: ~0 rows (approximately) DELETE FROM `secret_digest`; diff --git a/data/sql/base/db_auth/updates.sql b/data/sql/base/db_auth/updates.sql index 58606a6f8..158934b39 100644 --- a/data/sql/base/db_auth/updates.sql +++ b/data/sql/base/db_auth/updates.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `updates` ( `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'timestamp when the query was applied.', `speed` int unsigned NOT NULL DEFAULT '0' COMMENT 'time the query takes to apply in ms.', PRIMARY KEY (`name`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='List of all applied updates in this database.'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='List of all applied updates in this database.'; -- Dumping data for table acore_auth.updates: 32 rows DELETE FROM `updates`; diff --git a/data/sql/base/db_auth/updates_include.sql b/data/sql/base/db_auth/updates_include.sql index 5d44546c8..925258a35 100644 --- a/data/sql/base/db_auth/updates_include.sql +++ b/data/sql/base/db_auth/updates_include.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `updates_include` ( `path` varchar(200) NOT NULL COMMENT 'directory to include. $ means relative to the source directory.', `state` enum('RELEASED','ARCHIVED','CUSTOM') NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.', PRIMARY KEY (`path`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='List of directories where we want to include sql updates.'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='List of directories where we want to include sql updates.'; -- Dumping data for table acore_auth.updates_include: 3 rows DELETE FROM `updates_include`; diff --git a/data/sql/base/db_auth/uptime.sql b/data/sql/base/db_auth/uptime.sql index 94cc5e8ed..3acc2d55f 100644 --- a/data/sql/base/db_auth/uptime.sql +++ b/data/sql/base/db_auth/uptime.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `uptime` ( `maxplayers` smallint unsigned NOT NULL DEFAULT '0', `revision` varchar(255) NOT NULL DEFAULT 'AzerothCore', PRIMARY KEY (`realmid`,`starttime`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Uptime system'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Uptime system'; -- Dumping data for table acore_auth.uptime: ~4 rows (approximately) DELETE FROM `uptime`; diff --git a/data/sql/base/db_characters/account_data.sql b/data/sql/base/db_characters/account_data.sql index b22a99b08..92bdcbbfe 100644 --- a/data/sql/base/db_characters/account_data.sql +++ b/data/sql/base/db_characters/account_data.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `account_data` ( `time` int unsigned NOT NULL DEFAULT '0', `data` blob NOT NULL, PRIMARY KEY (`accountId`,`type`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.account_data: ~0 rows (approximately) DELETE FROM `account_data`; diff --git a/data/sql/base/db_characters/account_instance_times.sql b/data/sql/base/db_characters/account_instance_times.sql index bb697d561..441334c47 100644 --- a/data/sql/base/db_characters/account_instance_times.sql +++ b/data/sql/base/db_characters/account_instance_times.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `account_instance_times` ( `instanceId` int unsigned NOT NULL DEFAULT '0', `releaseTime` bigint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`accountId`,`instanceId`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.account_instance_times: ~0 rows (approximately) DELETE FROM `account_instance_times`; diff --git a/data/sql/base/db_characters/account_tutorial.sql b/data/sql/base/db_characters/account_tutorial.sql index 9f08073ac..be49afa6c 100644 --- a/data/sql/base/db_characters/account_tutorial.sql +++ b/data/sql/base/db_characters/account_tutorial.sql @@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `account_tutorial` ( `tut6` int unsigned NOT NULL DEFAULT '0', `tut7` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`accountId`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.account_tutorial: ~0 rows (approximately) DELETE FROM `account_tutorial`; diff --git a/data/sql/base/db_characters/addons.sql b/data/sql/base/db_characters/addons.sql index 354534654..5143e93d2 100644 --- a/data/sql/base/db_characters/addons.sql +++ b/data/sql/base/db_characters/addons.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `addons` ( `name` varchar(120) NOT NULL DEFAULT '', `crc` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Addons'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Addons'; -- Dumping data for table acore_characters.addons: ~23 rows (approximately) DELETE FROM `addons`; diff --git a/data/sql/base/db_characters/arena_team.sql b/data/sql/base/db_characters/arena_team.sql index bc4084bd5..641f94d6f 100644 --- a/data/sql/base/db_characters/arena_team.sql +++ b/data/sql/base/db_characters/arena_team.sql @@ -33,7 +33,7 @@ CREATE TABLE IF NOT EXISTS `arena_team` ( `borderStyle` tinyint unsigned NOT NULL DEFAULT '0', `borderColor` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`arenaTeamId`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.arena_team: ~0 rows (approximately) DELETE FROM `arena_team`; diff --git a/data/sql/base/db_characters/arena_team_member.sql b/data/sql/base/db_characters/arena_team_member.sql index 61f4f37e5..3dc91b757 100644 --- a/data/sql/base/db_characters/arena_team_member.sql +++ b/data/sql/base/db_characters/arena_team_member.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `arena_team_member` ( `seasonWins` smallint unsigned NOT NULL DEFAULT '0', `personalRating` smallint NOT NULL DEFAULT '0', PRIMARY KEY (`arenaTeamId`,`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.arena_team_member: ~0 rows (approximately) DELETE FROM `arena_team_member`; diff --git a/data/sql/base/db_characters/auctionhouse.sql b/data/sql/base/db_characters/auctionhouse.sql index 9f662fe22..d8742f36e 100644 --- a/data/sql/base/db_characters/auctionhouse.sql +++ b/data/sql/base/db_characters/auctionhouse.sql @@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `auctionhouse` ( `deposit` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `item_guid` (`itemguid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.auctionhouse: ~0 rows (approximately) DELETE FROM `auctionhouse`; diff --git a/data/sql/base/db_characters/banned_addons.sql b/data/sql/base/db_characters/banned_addons.sql index 7a71601c1..2e8df126d 100644 --- a/data/sql/base/db_characters/banned_addons.sql +++ b/data/sql/base/db_characters/banned_addons.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `banned_addons` ( `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`Id`), UNIQUE KEY `idx_name_ver` (`Name`,`Version`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.banned_addons: ~0 rows (approximately) DELETE FROM `banned_addons`; diff --git a/data/sql/base/db_characters/bugreport.sql b/data/sql/base/db_characters/bugreport.sql index 5b2cd3df8..ad8dc3989 100644 --- a/data/sql/base/db_characters/bugreport.sql +++ b/data/sql/base/db_characters/bugreport.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `bugreport` ( `type` longtext NOT NULL, `content` longtext NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Debug System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Debug System'; -- Dumping data for table acore_characters.bugreport: ~0 rows (approximately) DELETE FROM `bugreport`; diff --git a/data/sql/base/db_characters/calendar_events.sql b/data/sql/base/db_characters/calendar_events.sql index fb3173f36..5e70f8135 100644 --- a/data/sql/base/db_characters/calendar_events.sql +++ b/data/sql/base/db_characters/calendar_events.sql @@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `calendar_events` ( `flags` int unsigned NOT NULL DEFAULT '0', `time2` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.calendar_events: ~0 rows (approximately) DELETE FROM `calendar_events`; diff --git a/data/sql/base/db_characters/calendar_invites.sql b/data/sql/base/db_characters/calendar_invites.sql index 6aefcdc7c..f1bcef073 100644 --- a/data/sql/base/db_characters/calendar_invites.sql +++ b/data/sql/base/db_characters/calendar_invites.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `calendar_invites` ( `rank` tinyint unsigned NOT NULL DEFAULT '0', `text` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.calendar_invites: ~0 rows (approximately) DELETE FROM `calendar_invites`; diff --git a/data/sql/base/db_characters/channels.sql b/data/sql/base/db_characters/channels.sql index d86db913c..3cf5d0081 100644 --- a/data/sql/base/db_characters/channels.sql +++ b/data/sql/base/db_characters/channels.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `channels` ( `password` varchar(32) DEFAULT NULL, `lastUsed` int unsigned NOT NULL, PRIMARY KEY (`channelId`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Channel System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Channel System'; -- Dumping data for table acore_characters.channels: ~0 rows (approximately) DELETE FROM `channels`; diff --git a/data/sql/base/db_characters/channels_bans.sql b/data/sql/base/db_characters/channels_bans.sql index 7e1123e5f..d341e1cea 100644 --- a/data/sql/base/db_characters/channels_bans.sql +++ b/data/sql/base/db_characters/channels_bans.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `channels_bans` ( `playerGUID` int unsigned NOT NULL, `banTime` int unsigned NOT NULL, PRIMARY KEY (`channelId`,`playerGUID`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.channels_bans: ~0 rows (approximately) DELETE FROM `channels_bans`; diff --git a/data/sql/base/db_characters/channels_rights.sql b/data/sql/base/db_characters/channels_rights.sql index cb376ebff..7b79c77c3 100644 --- a/data/sql/base/db_characters/channels_rights.sql +++ b/data/sql/base/db_characters/channels_rights.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `channels_rights` ( `delaymessage` varchar(255) NOT NULL DEFAULT '', `moderators` text, PRIMARY KEY (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.channels_rights: ~0 rows (approximately) DELETE FROM `channels_rights`; diff --git a/data/sql/base/db_characters/character_account_data.sql b/data/sql/base/db_characters/character_account_data.sql index 095be6469..56b1ea668 100644 --- a/data/sql/base/db_characters/character_account_data.sql +++ b/data/sql/base/db_characters/character_account_data.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_account_data` ( `time` int unsigned NOT NULL DEFAULT '0', `data` blob NOT NULL, PRIMARY KEY (`guid`,`type`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_account_data: ~0 rows (approximately) DELETE FROM `character_account_data`; diff --git a/data/sql/base/db_characters/character_achievement.sql b/data/sql/base/db_characters/character_achievement.sql index d47113077..03605475b 100644 --- a/data/sql/base/db_characters/character_achievement.sql +++ b/data/sql/base/db_characters/character_achievement.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `character_achievement` ( `achievement` smallint unsigned NOT NULL, `date` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`achievement`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_achievement: ~0 rows (approximately) DELETE FROM `character_achievement`; diff --git a/data/sql/base/db_characters/character_achievement_progress.sql b/data/sql/base/db_characters/character_achievement_progress.sql index 46c737101..b3a6d2b76 100644 --- a/data/sql/base/db_characters/character_achievement_progress.sql +++ b/data/sql/base/db_characters/character_achievement_progress.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_achievement_progress` ( `counter` int unsigned NOT NULL, `date` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`criteria`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_achievement_progress: ~0 rows (approximately) DELETE FROM `character_achievement_progress`; diff --git a/data/sql/base/db_characters/character_action.sql b/data/sql/base/db_characters/character_action.sql index 890ecb50b..58aa73563 100644 --- a/data/sql/base/db_characters/character_action.sql +++ b/data/sql/base/db_characters/character_action.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `character_action` ( `action` int unsigned NOT NULL DEFAULT '0', `type` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`spec`,`button`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_action: ~0 rows (approximately) DELETE FROM `character_action`; diff --git a/data/sql/base/db_characters/character_arena_stats.sql b/data/sql/base/db_characters/character_arena_stats.sql index 8c9d4e032..500cdc2d9 100644 --- a/data/sql/base/db_characters/character_arena_stats.sql +++ b/data/sql/base/db_characters/character_arena_stats.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_arena_stats` ( `matchMakerRating` smallint unsigned NOT NULL DEFAULT '0', `maxMMR` smallint NOT NULL, PRIMARY KEY (`guid`,`slot`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_arena_stats: ~0 rows (approximately) DELETE FROM `character_arena_stats`; diff --git a/data/sql/base/db_characters/character_aura.sql b/data/sql/base/db_characters/character_aura.sql index 30cc25a4c..cfea00109 100644 --- a/data/sql/base/db_characters/character_aura.sql +++ b/data/sql/base/db_characters/character_aura.sql @@ -34,7 +34,7 @@ CREATE TABLE IF NOT EXISTS `character_aura` ( `remainTime` int NOT NULL DEFAULT '0', `remainCharges` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`casterGuid`,`itemGuid`,`spell`,`effectMask`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_aura: ~0 rows (approximately) DELETE FROM `character_aura`; diff --git a/data/sql/base/db_characters/character_banned.sql b/data/sql/base/db_characters/character_banned.sql index 8c5f17f8c..466e5ae71 100644 --- a/data/sql/base/db_characters/character_banned.sql +++ b/data/sql/base/db_characters/character_banned.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `character_banned` ( `banreason` varchar(255) NOT NULL, `active` tinyint unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`guid`,`bandate`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Ban List'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Ban List'; -- Dumping data for table acore_characters.character_banned: ~0 rows (approximately) DELETE FROM `character_banned`; diff --git a/data/sql/base/db_characters/character_battleground_random.sql b/data/sql/base/db_characters/character_battleground_random.sql index 26b442f31..56975c2ec 100644 --- a/data/sql/base/db_characters/character_battleground_random.sql +++ b/data/sql/base/db_characters/character_battleground_random.sql @@ -19,7 +19,7 @@ DROP TABLE IF EXISTS `character_battleground_random`; CREATE TABLE IF NOT EXISTS `character_battleground_random` ( `guid` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_battleground_random: ~0 rows (approximately) DELETE FROM `character_battleground_random`; diff --git a/data/sql/base/db_characters/character_brew_of_the_month.sql b/data/sql/base/db_characters/character_brew_of_the_month.sql index 2db1c67fc..136e5ed84 100644 --- a/data/sql/base/db_characters/character_brew_of_the_month.sql +++ b/data/sql/base/db_characters/character_brew_of_the_month.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `character_brew_of_the_month` ( `guid` int unsigned NOT NULL, `lastEventId` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_brew_of_the_month: ~0 rows (approximately) DELETE FROM `character_brew_of_the_month`; diff --git a/data/sql/base/db_characters/character_declinedname.sql b/data/sql/base/db_characters/character_declinedname.sql index 7b0f20e78..40982740a 100644 --- a/data/sql/base/db_characters/character_declinedname.sql +++ b/data/sql/base/db_characters/character_declinedname.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `character_declinedname` ( `instrumental` varchar(15) NOT NULL DEFAULT '', `prepositional` varchar(15) NOT NULL DEFAULT '', PRIMARY KEY (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_declinedname: ~0 rows (approximately) DELETE FROM `character_declinedname`; diff --git a/data/sql/base/db_characters/character_entry_point.sql b/data/sql/base/db_characters/character_entry_point.sql index c2e5e255f..296939d6f 100644 --- a/data/sql/base/db_characters/character_entry_point.sql +++ b/data/sql/base/db_characters/character_entry_point.sql @@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `character_entry_point` ( `taxiPath1` int unsigned NOT NULL DEFAULT '0', `mountSpell` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_entry_point: ~0 rows (approximately) DELETE FROM `character_entry_point`; diff --git a/data/sql/base/db_characters/character_equipmentsets.sql b/data/sql/base/db_characters/character_equipmentsets.sql index cc4ef9eb5..0cfce2d1c 100644 --- a/data/sql/base/db_characters/character_equipmentsets.sql +++ b/data/sql/base/db_characters/character_equipmentsets.sql @@ -45,7 +45,7 @@ CREATE TABLE IF NOT EXISTS `character_equipmentsets` ( PRIMARY KEY (`setguid`), UNIQUE KEY `idx_set` (`guid`,`setguid`,`setindex`), KEY `Idx_setindex` (`setindex`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_equipmentsets: ~0 rows (approximately) DELETE FROM `character_equipmentsets`; diff --git a/data/sql/base/db_characters/character_gifts.sql b/data/sql/base/db_characters/character_gifts.sql index 59851a95c..ce55c8263 100644 --- a/data/sql/base/db_characters/character_gifts.sql +++ b/data/sql/base/db_characters/character_gifts.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `character_gifts` ( `flags` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`item_guid`), KEY `idx_guid` (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_gifts: ~0 rows (approximately) DELETE FROM `character_gifts`; diff --git a/data/sql/base/db_characters/character_glyphs.sql b/data/sql/base/db_characters/character_glyphs.sql index 4e0f9cd93..aabe0a9be 100644 --- a/data/sql/base/db_characters/character_glyphs.sql +++ b/data/sql/base/db_characters/character_glyphs.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `character_glyphs` ( `glyph5` smallint unsigned DEFAULT '0', `glyph6` smallint unsigned DEFAULT '0', PRIMARY KEY (`guid`,`talentGroup`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_glyphs: ~0 rows (approximately) DELETE FROM `character_glyphs`; diff --git a/data/sql/base/db_characters/character_homebind.sql b/data/sql/base/db_characters/character_homebind.sql index 36415a7a4..34cbb18d7 100644 --- a/data/sql/base/db_characters/character_homebind.sql +++ b/data/sql/base/db_characters/character_homebind.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `character_homebind` ( `posZ` float NOT NULL DEFAULT '0', `posO` float NOT NULL DEFAULT '0', PRIMARY KEY (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_homebind: ~0 rows (approximately) DELETE FROM `character_homebind`; diff --git a/data/sql/base/db_characters/character_instance.sql b/data/sql/base/db_characters/character_instance.sql index 228c97b31..143fd4606 100644 --- a/data/sql/base/db_characters/character_instance.sql +++ b/data/sql/base/db_characters/character_instance.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `character_instance` ( `extended` tinyint unsigned NOT NULL, PRIMARY KEY (`guid`,`instance`), KEY `instance` (`instance`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_instance: ~0 rows (approximately) DELETE FROM `character_instance`; diff --git a/data/sql/base/db_characters/character_inventory.sql b/data/sql/base/db_characters/character_inventory.sql index 1175f51d4..6412e87d2 100644 --- a/data/sql/base/db_characters/character_inventory.sql +++ b/data/sql/base/db_characters/character_inventory.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `character_inventory` ( PRIMARY KEY (`item`), UNIQUE KEY `guid` (`guid`,`bag`,`slot`), KEY `idx_guid` (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_inventory: ~0 rows (approximately) DELETE FROM `character_inventory`; diff --git a/data/sql/base/db_characters/character_pet.sql b/data/sql/base/db_characters/character_pet.sql index e64c1895f..599dbc2f5 100644 --- a/data/sql/base/db_characters/character_pet.sql +++ b/data/sql/base/db_characters/character_pet.sql @@ -37,7 +37,7 @@ CREATE TABLE IF NOT EXISTS `character_pet` ( PRIMARY KEY (`id`), KEY `owner` (`owner`), KEY `idx_slot` (`slot`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Pet System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Pet System'; -- Dumping data for table acore_characters.character_pet: ~0 rows (approximately) DELETE FROM `character_pet`; diff --git a/data/sql/base/db_characters/character_pet_declinedname.sql b/data/sql/base/db_characters/character_pet_declinedname.sql index d40cf27bf..9ebdd52ad 100644 --- a/data/sql/base/db_characters/character_pet_declinedname.sql +++ b/data/sql/base/db_characters/character_pet_declinedname.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `character_pet_declinedname` ( `prepositional` varchar(12) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `owner_key` (`owner`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_pet_declinedname: ~0 rows (approximately) DELETE FROM `character_pet_declinedname`; diff --git a/data/sql/base/db_characters/character_queststatus.sql b/data/sql/base/db_characters/character_queststatus.sql index 268d049e3..3ef54adfe 100644 --- a/data/sql/base/db_characters/character_queststatus.sql +++ b/data/sql/base/db_characters/character_queststatus.sql @@ -34,7 +34,7 @@ CREATE TABLE IF NOT EXISTS `character_queststatus` ( `itemcount6` smallint unsigned NOT NULL DEFAULT '0', `playercount` smallint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`quest`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_queststatus: ~0 rows (approximately) DELETE FROM `character_queststatus`; diff --git a/data/sql/base/db_characters/character_queststatus_daily.sql b/data/sql/base/db_characters/character_queststatus_daily.sql index b87729413..27a4600d9 100644 --- a/data/sql/base/db_characters/character_queststatus_daily.sql +++ b/data/sql/base/db_characters/character_queststatus_daily.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_queststatus_daily` ( `time` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`quest`), KEY `idx_guid` (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_queststatus_daily: ~0 rows (approximately) DELETE FROM `character_queststatus_daily`; diff --git a/data/sql/base/db_characters/character_queststatus_monthly.sql b/data/sql/base/db_characters/character_queststatus_monthly.sql index 7dca759a4..d1457874a 100644 --- a/data/sql/base/db_characters/character_queststatus_monthly.sql +++ b/data/sql/base/db_characters/character_queststatus_monthly.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `character_queststatus_monthly` ( `quest` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier', PRIMARY KEY (`guid`,`quest`), KEY `idx_guid` (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_queststatus_monthly: ~0 rows (approximately) DELETE FROM `character_queststatus_monthly`; diff --git a/data/sql/base/db_characters/character_queststatus_rewarded.sql b/data/sql/base/db_characters/character_queststatus_rewarded.sql index 7420a6a88..dd2e2ad71 100644 --- a/data/sql/base/db_characters/character_queststatus_rewarded.sql +++ b/data/sql/base/db_characters/character_queststatus_rewarded.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `character_queststatus_rewarded` ( `quest` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier', `active` tinyint unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`guid`,`quest`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_queststatus_rewarded: ~0 rows (approximately) DELETE FROM `character_queststatus_rewarded`; diff --git a/data/sql/base/db_characters/character_queststatus_seasonal.sql b/data/sql/base/db_characters/character_queststatus_seasonal.sql index ed06a420f..ea6f462c1 100644 --- a/data/sql/base/db_characters/character_queststatus_seasonal.sql +++ b/data/sql/base/db_characters/character_queststatus_seasonal.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_queststatus_seasonal` ( `event` int unsigned NOT NULL DEFAULT '0' COMMENT 'Event Identifier', PRIMARY KEY (`guid`,`quest`), KEY `idx_guid` (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_queststatus_seasonal: ~0 rows (approximately) DELETE FROM `character_queststatus_seasonal`; diff --git a/data/sql/base/db_characters/character_queststatus_weekly.sql b/data/sql/base/db_characters/character_queststatus_weekly.sql index 540ba230c..fececb3e9 100644 --- a/data/sql/base/db_characters/character_queststatus_weekly.sql +++ b/data/sql/base/db_characters/character_queststatus_weekly.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `character_queststatus_weekly` ( `quest` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier', PRIMARY KEY (`guid`,`quest`), KEY `idx_guid` (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_queststatus_weekly: ~0 rows (approximately) DELETE FROM `character_queststatus_weekly`; diff --git a/data/sql/base/db_characters/character_reputation.sql b/data/sql/base/db_characters/character_reputation.sql index 671ceee3c..6a788e8b6 100644 --- a/data/sql/base/db_characters/character_reputation.sql +++ b/data/sql/base/db_characters/character_reputation.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_reputation` ( `standing` int NOT NULL DEFAULT '0', `flags` smallint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`faction`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_reputation: ~0 rows (approximately) DELETE FROM `character_reputation`; diff --git a/data/sql/base/db_characters/character_settings.sql b/data/sql/base/db_characters/character_settings.sql index 040e6f409..716e3e6d8 100644 --- a/data/sql/base/db_characters/character_settings.sql +++ b/data/sql/base/db_characters/character_settings.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `character_settings` ( `source` varchar(40) NOT NULL, `data` text, PRIMARY KEY (`guid`,`source`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player Settings'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Player Settings'; -- Dumping data for table acore_characters.character_settings: 0 rows DELETE FROM `character_settings`; diff --git a/data/sql/base/db_characters/character_skills.sql b/data/sql/base/db_characters/character_skills.sql index 599dfc0a1..239fc60bf 100644 --- a/data/sql/base/db_characters/character_skills.sql +++ b/data/sql/base/db_characters/character_skills.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_skills` ( `value` smallint unsigned NOT NULL, `max` smallint unsigned NOT NULL, PRIMARY KEY (`guid`,`skill`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_skills: ~0 rows (approximately) DELETE FROM `character_skills`; diff --git a/data/sql/base/db_characters/character_social.sql b/data/sql/base/db_characters/character_social.sql index 7a51af079..204fdce3d 100644 --- a/data/sql/base/db_characters/character_social.sql +++ b/data/sql/base/db_characters/character_social.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `character_social` ( `note` varchar(48) NOT NULL DEFAULT '' COMMENT 'Friend Note', PRIMARY KEY (`guid`,`friend`,`flags`), KEY `friend` (`friend`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_social: ~0 rows (approximately) DELETE FROM `character_social`; diff --git a/data/sql/base/db_characters/character_spell.sql b/data/sql/base/db_characters/character_spell.sql index c6d0d3adb..f73bf4a38 100644 --- a/data/sql/base/db_characters/character_spell.sql +++ b/data/sql/base/db_characters/character_spell.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `character_spell` ( `spell` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier', `specMask` tinyint unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`guid`,`spell`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.character_spell: ~0 rows (approximately) DELETE FROM `character_spell`; diff --git a/data/sql/base/db_characters/character_spell_cooldown.sql b/data/sql/base/db_characters/character_spell_cooldown.sql index f8c844ac5..802f68e49 100644 --- a/data/sql/base/db_characters/character_spell_cooldown.sql +++ b/data/sql/base/db_characters/character_spell_cooldown.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `character_spell_cooldown` ( `time` int unsigned NOT NULL DEFAULT '0', `needSend` tinyint unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`guid`,`spell`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_spell_cooldown: ~0 rows (approximately) DELETE FROM `character_spell_cooldown`; diff --git a/data/sql/base/db_characters/character_stats.sql b/data/sql/base/db_characters/character_stats.sql index 0d55af2c8..30e54b305 100644 --- a/data/sql/base/db_characters/character_stats.sql +++ b/data/sql/base/db_characters/character_stats.sql @@ -50,7 +50,7 @@ CREATE TABLE IF NOT EXISTS `character_stats` ( `resilience` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`), CONSTRAINT `character_stats_chk_1` CHECK (((`blockPct` >= 0) and (`dodgePct` >= 0) and (`parryPct` >= 0) and (`critPct` >= 0) and (`rangedCritPct` >= 0) and (`spellCritPct` >= 0))) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_stats: ~0 rows (approximately) DELETE FROM `character_stats`; diff --git a/data/sql/base/db_characters/character_talent.sql b/data/sql/base/db_characters/character_talent.sql index 1e6f02c1d..6d8f47885 100644 --- a/data/sql/base/db_characters/character_talent.sql +++ b/data/sql/base/db_characters/character_talent.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `character_talent` ( `spell` mediumint unsigned NOT NULL, `specMask` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`spell`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.character_talent: ~0 rows (approximately) DELETE FROM `character_talent`; diff --git a/data/sql/base/db_characters/characters.sql b/data/sql/base/db_characters/characters.sql index 10c64c95d..5f56d8079 100644 --- a/data/sql/base/db_characters/characters.sql +++ b/data/sql/base/db_characters/characters.sql @@ -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) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, + `name` varchar(12) NOT NULL, `race` tinyint unsigned NOT NULL DEFAULT '0', `class` tinyint unsigned NOT NULL DEFAULT '0', `gender` tinyint unsigned NOT NULL DEFAULT '0', @@ -100,7 +100,7 @@ CREATE TABLE IF NOT EXISTS `characters` ( KEY `idx_account` (`account`), KEY `idx_online` (`online`), KEY `idx_name` (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.characters: ~0 rows (approximately) DELETE FROM `characters`; diff --git a/data/sql/base/db_characters/corpse.sql b/data/sql/base/db_characters/corpse.sql index fbb1d390b..1de73d779 100644 --- a/data/sql/base/db_characters/corpse.sql +++ b/data/sql/base/db_characters/corpse.sql @@ -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 COLLATE=utf8mb4_0900_ai_ci COMMENT='Death System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Death System'; -- Dumping data for table acore_characters.corpse: ~0 rows (approximately) DELETE FROM `corpse`; diff --git a/data/sql/base/db_characters/creature_respawn.sql b/data/sql/base/db_characters/creature_respawn.sql index 4bb677020..1517c8a6e 100644 --- a/data/sql/base/db_characters/creature_respawn.sql +++ b/data/sql/base/db_characters/creature_respawn.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `creature_respawn` ( `instanceId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier', PRIMARY KEY (`guid`,`instanceId`), KEY `idx_instance` (`instanceId`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Grid Loading System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Grid Loading System'; -- Dumping data for table acore_characters.creature_respawn: ~0 rows (approximately) DELETE FROM `creature_respawn`; diff --git a/data/sql/base/db_characters/game_event_condition_save.sql b/data/sql/base/db_characters/game_event_condition_save.sql index 7ef337278..6ea5c43f2 100644 --- a/data/sql/base/db_characters/game_event_condition_save.sql +++ b/data/sql/base/db_characters/game_event_condition_save.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `game_event_condition_save` ( `condition_id` int unsigned NOT NULL DEFAULT '0', `done` float DEFAULT '0', PRIMARY KEY (`eventEntry`,`condition_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.game_event_condition_save: ~0 rows (approximately) DELETE FROM `game_event_condition_save`; diff --git a/data/sql/base/db_characters/game_event_save.sql b/data/sql/base/db_characters/game_event_save.sql index eadaf868a..af65de3f3 100644 --- a/data/sql/base/db_characters/game_event_save.sql +++ b/data/sql/base/db_characters/game_event_save.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `game_event_save` ( `state` tinyint unsigned NOT NULL DEFAULT '1', `next_start` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`eventEntry`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.game_event_save: ~0 rows (approximately) DELETE FROM `game_event_save`; diff --git a/data/sql/base/db_characters/gameobject_respawn.sql b/data/sql/base/db_characters/gameobject_respawn.sql index e3a6c5d10..f8689d4f0 100644 --- a/data/sql/base/db_characters/gameobject_respawn.sql +++ b/data/sql/base/db_characters/gameobject_respawn.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `gameobject_respawn` ( `instanceId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier', PRIMARY KEY (`guid`,`instanceId`), KEY `idx_instance` (`instanceId`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Grid Loading System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Grid Loading System'; -- Dumping data for table acore_characters.gameobject_respawn: ~0 rows (approximately) DELETE FROM `gameobject_respawn`; diff --git a/data/sql/base/db_characters/gm_subsurvey.sql b/data/sql/base/db_characters/gm_subsurvey.sql index 2bb107aaa..764297f5e 100644 --- a/data/sql/base/db_characters/gm_subsurvey.sql +++ b/data/sql/base/db_characters/gm_subsurvey.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `gm_subsurvey` ( `answer` int unsigned NOT NULL DEFAULT '0', `answerComment` text NOT NULL, PRIMARY KEY (`surveyId`,`questionId`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.gm_subsurvey: ~0 rows (approximately) DELETE FROM `gm_subsurvey`; diff --git a/data/sql/base/db_characters/gm_survey.sql b/data/sql/base/db_characters/gm_survey.sql index 33bf5e232..adc437aef 100644 --- a/data/sql/base/db_characters/gm_survey.sql +++ b/data/sql/base/db_characters/gm_survey.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `gm_survey` ( `createTime` int unsigned NOT NULL DEFAULT '0', `maxMMR` smallint NOT NULL, PRIMARY KEY (`surveyId`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.gm_survey: ~0 rows (approximately) DELETE FROM `gm_survey`; diff --git a/data/sql/base/db_characters/gm_ticket.sql b/data/sql/base/db_characters/gm_ticket.sql index 502a3a106..b4e2de6a8 100644 --- a/data/sql/base/db_characters/gm_ticket.sql +++ b/data/sql/base/db_characters/gm_ticket.sql @@ -38,7 +38,7 @@ CREATE TABLE IF NOT EXISTS `gm_ticket` ( `needMoreHelp` tinyint unsigned NOT NULL DEFAULT '0', `resolvedBy` int NOT NULL DEFAULT '0' COMMENT '-1 Resolved by Console, >0 GUID of GM', PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.gm_ticket: ~0 rows (approximately) DELETE FROM `gm_ticket`; diff --git a/data/sql/base/db_characters/group_member.sql b/data/sql/base/db_characters/group_member.sql index 0b9b224cc..d0dae1412 100644 --- a/data/sql/base/db_characters/group_member.sql +++ b/data/sql/base/db_characters/group_member.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `group_member` ( `subgroup` tinyint unsigned NOT NULL DEFAULT '0', `roles` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`memberGuid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Groups'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Groups'; -- Dumping data for table acore_characters.group_member: ~0 rows (approximately) DELETE FROM `group_member`; diff --git a/data/sql/base/db_characters/groups.sql b/data/sql/base/db_characters/groups.sql index d6099329f..e5ecbd3d8 100644 --- a/data/sql/base/db_characters/groups.sql +++ b/data/sql/base/db_characters/groups.sql @@ -36,7 +36,7 @@ CREATE TABLE IF NOT EXISTS `groups` ( `masterLooterGuid` int unsigned NOT NULL, PRIMARY KEY (`guid`), KEY `leaderGuid` (`leaderGuid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Groups'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Groups'; -- Dumping data for table acore_characters.groups: ~0 rows (approximately) DELETE FROM `groups`; diff --git a/data/sql/base/db_characters/guild.sql b/data/sql/base/db_characters/guild.sql index 91081a182..8e4135fb2 100644 --- a/data/sql/base/db_characters/guild.sql +++ b/data/sql/base/db_characters/guild.sql @@ -30,7 +30,7 @@ CREATE TABLE IF NOT EXISTS `guild` ( `createdate` int unsigned NOT NULL DEFAULT '0', `BankMoney` bigint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guildid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Guild System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Guild System'; -- Dumping data for table acore_characters.guild: ~0 rows (approximately) DELETE FROM `guild`; diff --git a/data/sql/base/db_characters/guild_bank_eventlog.sql b/data/sql/base/db_characters/guild_bank_eventlog.sql index 4189d432a..39f4786a6 100644 --- a/data/sql/base/db_characters/guild_bank_eventlog.sql +++ b/data/sql/base/db_characters/guild_bank_eventlog.sql @@ -30,7 +30,7 @@ CREATE TABLE IF NOT EXISTS `guild_bank_eventlog` ( KEY `guildid_key` (`guildid`), KEY `Idx_PlayerGuid` (`PlayerGuid`), KEY `Idx_LogGuid` (`LogGuid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.guild_bank_eventlog: ~0 rows (approximately) DELETE FROM `guild_bank_eventlog`; diff --git a/data/sql/base/db_characters/guild_bank_item.sql b/data/sql/base/db_characters/guild_bank_item.sql index a327a6eb6..ba873569c 100644 --- a/data/sql/base/db_characters/guild_bank_item.sql +++ b/data/sql/base/db_characters/guild_bank_item.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `guild_bank_item` ( PRIMARY KEY (`guildid`,`TabId`,`SlotId`), KEY `guildid_key` (`guildid`), KEY `Idx_item_guid` (`item_guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.guild_bank_item: ~0 rows (approximately) DELETE FROM `guild_bank_item`; diff --git a/data/sql/base/db_characters/guild_bank_right.sql b/data/sql/base/db_characters/guild_bank_right.sql index 23101b251..f9e3c6152 100644 --- a/data/sql/base/db_characters/guild_bank_right.sql +++ b/data/sql/base/db_characters/guild_bank_right.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `guild_bank_right` ( `SlotPerDay` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guildid`,`TabId`,`rid`), KEY `guildid_key` (`guildid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.guild_bank_right: ~0 rows (approximately) DELETE FROM `guild_bank_right`; diff --git a/data/sql/base/db_characters/guild_bank_tab.sql b/data/sql/base/db_characters/guild_bank_tab.sql index a45143a31..a372181ec 100644 --- a/data/sql/base/db_characters/guild_bank_tab.sql +++ b/data/sql/base/db_characters/guild_bank_tab.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `guild_bank_tab` ( `TabText` varchar(500) DEFAULT NULL, PRIMARY KEY (`guildid`,`TabId`), KEY `guildid_key` (`guildid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.guild_bank_tab: ~0 rows (approximately) DELETE FROM `guild_bank_tab`; diff --git a/data/sql/base/db_characters/guild_eventlog.sql b/data/sql/base/db_characters/guild_eventlog.sql index 8b6a896d6..d1fff660b 100644 --- a/data/sql/base/db_characters/guild_eventlog.sql +++ b/data/sql/base/db_characters/guild_eventlog.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `guild_eventlog` ( KEY `Idx_PlayerGuid1` (`PlayerGuid1`), KEY `Idx_PlayerGuid2` (`PlayerGuid2`), KEY `Idx_LogGuid` (`LogGuid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Guild Eventlog'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Guild Eventlog'; -- Dumping data for table acore_characters.guild_eventlog: ~0 rows (approximately) DELETE FROM `guild_eventlog`; diff --git a/data/sql/base/db_characters/guild_member.sql b/data/sql/base/db_characters/guild_member.sql index afb38f437..1693c6bdb 100644 --- a/data/sql/base/db_characters/guild_member.sql +++ b/data/sql/base/db_characters/guild_member.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `guild_member` ( UNIQUE KEY `guid_key` (`guid`), KEY `guildid_key` (`guildid`), KEY `guildid_rank_key` (`guildid`,`rank`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Guild System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Guild System'; -- Dumping data for table acore_characters.guild_member: ~0 rows (approximately) DELETE FROM `guild_member`; diff --git a/data/sql/base/db_characters/guild_member_withdraw.sql b/data/sql/base/db_characters/guild_member_withdraw.sql index 420823397..0f9db9caf 100644 --- a/data/sql/base/db_characters/guild_member_withdraw.sql +++ b/data/sql/base/db_characters/guild_member_withdraw.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `guild_member_withdraw` ( `tab5` int unsigned NOT NULL DEFAULT '0', `money` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Guild Member Daily Withdraws'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Guild Member Daily Withdraws'; -- Dumping data for table acore_characters.guild_member_withdraw: ~0 rows (approximately) DELETE FROM `guild_member_withdraw`; diff --git a/data/sql/base/db_characters/guild_rank.sql b/data/sql/base/db_characters/guild_rank.sql index e68cfa688..d85aa9357 100644 --- a/data/sql/base/db_characters/guild_rank.sql +++ b/data/sql/base/db_characters/guild_rank.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `guild_rank` ( `BankMoneyPerDay` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guildid`,`rid`), KEY `Idx_rid` (`rid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Guild System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Guild System'; -- Dumping data for table acore_characters.guild_rank: ~0 rows (approximately) DELETE FROM `guild_rank`; diff --git a/data/sql/base/db_characters/instance.sql b/data/sql/base/db_characters/instance.sql index 0c8982671..352c56dc2 100644 --- a/data/sql/base/db_characters/instance.sql +++ b/data/sql/base/db_characters/instance.sql @@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `instance` ( KEY `map` (`map`), KEY `resettime` (`resettime`), KEY `difficulty` (`difficulty`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.instance: ~0 rows (approximately) DELETE FROM `instance`; diff --git a/data/sql/base/db_characters/instance_reset.sql b/data/sql/base/db_characters/instance_reset.sql index 6c13db3bc..983f5a084 100644 --- a/data/sql/base/db_characters/instance_reset.sql +++ b/data/sql/base/db_characters/instance_reset.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `instance_reset` ( `resettime` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`mapid`,`difficulty`), KEY `difficulty` (`difficulty`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.instance_reset: ~71 rows (approximately) DELETE FROM `instance_reset`; diff --git a/data/sql/base/db_characters/instance_saved_go_state_data.sql b/data/sql/base/db_characters/instance_saved_go_state_data.sql index 41ef0dc07..081a2fb81 100644 --- a/data/sql/base/db_characters/instance_saved_go_state_data.sql +++ b/data/sql/base/db_characters/instance_saved_go_state_data.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `instance_saved_go_state_data` ( `guid` int unsigned NOT NULL COMMENT 'gameobject.guid', `state` tinyint unsigned DEFAULT '0' COMMENT 'gameobject.state', PRIMARY KEY (`id`,`guid`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.instance_saved_go_state_data: ~0 rows (approximately) DELETE FROM `instance_saved_go_state_data`; diff --git a/data/sql/base/db_characters/item_instance.sql b/data/sql/base/db_characters/item_instance.sql index 71006b673..babdef8b0 100644 --- a/data/sql/base/db_characters/item_instance.sql +++ b/data/sql/base/db_characters/item_instance.sql @@ -33,7 +33,7 @@ CREATE TABLE IF NOT EXISTS `item_instance` ( `text` text, PRIMARY KEY (`guid`), KEY `idx_owner_guid` (`owner_guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Item System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Item System'; -- Dumping data for table acore_characters.item_instance: ~0 rows (approximately) DELETE FROM `item_instance`; diff --git a/data/sql/base/db_characters/item_loot_storage.sql b/data/sql/base/db_characters/item_loot_storage.sql index ac41d749f..2109ce26f 100644 --- a/data/sql/base/db_characters/item_loot_storage.sql +++ b/data/sql/base/db_characters/item_loot_storage.sql @@ -30,7 +30,7 @@ CREATE TABLE IF NOT EXISTS `item_loot_storage` ( `is_underthreshold` tinyint unsigned NOT NULL, `needs_quest` tinyint unsigned NOT NULL, `conditionLootId` int NOT NULL DEFAULT '0' -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.item_loot_storage: ~0 rows (approximately) DELETE FROM `item_loot_storage`; diff --git a/data/sql/base/db_characters/item_refund_instance.sql b/data/sql/base/db_characters/item_refund_instance.sql index 340ff3ecb..ec8ff877b 100644 --- a/data/sql/base/db_characters/item_refund_instance.sql +++ b/data/sql/base/db_characters/item_refund_instance.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `item_refund_instance` ( `paidMoney` int unsigned NOT NULL DEFAULT '0', `paidExtendedCost` smallint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`item_guid`,`player_guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Item Refund System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Item Refund System'; -- Dumping data for table acore_characters.item_refund_instance: ~0 rows (approximately) DELETE FROM `item_refund_instance`; diff --git a/data/sql/base/db_characters/item_soulbound_trade_data.sql b/data/sql/base/db_characters/item_soulbound_trade_data.sql index bf1838813..821b810e1 100644 --- a/data/sql/base/db_characters/item_soulbound_trade_data.sql +++ b/data/sql/base/db_characters/item_soulbound_trade_data.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `item_soulbound_trade_data` ( `itemGuid` int unsigned NOT NULL COMMENT 'Item GUID', `allowedPlayers` text NOT NULL COMMENT 'Space separated GUID list of players who can receive this item in trade', PRIMARY KEY (`itemGuid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Item Refund System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Item Refund System'; -- Dumping data for table acore_characters.item_soulbound_trade_data: ~0 rows (approximately) DELETE FROM `item_soulbound_trade_data`; diff --git a/data/sql/base/db_characters/lag_reports.sql b/data/sql/base/db_characters/lag_reports.sql index 693bb04fa..8934c974b 100644 --- a/data/sql/base/db_characters/lag_reports.sql +++ b/data/sql/base/db_characters/lag_reports.sql @@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `lag_reports` ( `latency` int unsigned NOT NULL DEFAULT '0', `createTime` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`reportId`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_characters.lag_reports: ~0 rows (approximately) DELETE FROM `lag_reports`; diff --git a/data/sql/base/db_characters/lfg_data.sql b/data/sql/base/db_characters/lfg_data.sql index ed2eae3ab..ccee2b4c8 100644 --- a/data/sql/base/db_characters/lfg_data.sql +++ b/data/sql/base/db_characters/lfg_data.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `lfg_data` ( `dungeon` int unsigned NOT NULL DEFAULT '0', `state` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='LFG Data'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='LFG Data'; -- Dumping data for table acore_characters.lfg_data: ~0 rows (approximately) DELETE FROM `lfg_data`; diff --git a/data/sql/base/db_characters/log_arena_fights.sql b/data/sql/base/db_characters/log_arena_fights.sql index 48e9b9cc5..2df9eec1c 100644 --- a/data/sql/base/db_characters/log_arena_fights.sql +++ b/data/sql/base/db_characters/log_arena_fights.sql @@ -31,7 +31,7 @@ CREATE TABLE IF NOT EXISTS `log_arena_fights` ( `loser_tr_change` smallint NOT NULL, `currOnline` int unsigned NOT NULL, PRIMARY KEY (`fight_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.log_arena_fights: 0 rows DELETE FROM `log_arena_fights`; diff --git a/data/sql/base/db_characters/log_arena_memberstats.sql b/data/sql/base/db_characters/log_arena_memberstats.sql index 059e30b92..21bf6b708 100644 --- a/data/sql/base/db_characters/log_arena_memberstats.sql +++ b/data/sql/base/db_characters/log_arena_memberstats.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `log_arena_memberstats` ( `heal` int unsigned NOT NULL, `kblows` int unsigned NOT NULL, PRIMARY KEY (`fight_id`,`member_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.log_arena_memberstats: 0 rows DELETE FROM `log_arena_memberstats`; diff --git a/data/sql/base/db_characters/log_encounter.sql b/data/sql/base/db_characters/log_encounter.sql index 754281c6b..66afef929 100644 --- a/data/sql/base/db_characters/log_encounter.sql +++ b/data/sql/base/db_characters/log_encounter.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `log_encounter` ( `creditType` tinyint unsigned NOT NULL, `creditEntry` int unsigned NOT NULL, `playersInfo` text NOT NULL -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.log_encounter: 0 rows DELETE FROM `log_encounter`; diff --git a/data/sql/base/db_characters/log_money.sql b/data/sql/base/db_characters/log_money.sql index 0101db8a5..8d8b4efe6 100644 --- a/data/sql/base/db_characters/log_money.sql +++ b/data/sql/base/db_characters/log_money.sql @@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `log_money` ( `topic` text NOT NULL, `date` datetime NOT NULL, `type` tinyint NOT NULL COMMENT '1=COD,2=AH,3=GB DEPOSIT,4=GB WITHDRAW,5=MAIL,6=TRADE' -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.log_money: 0 rows DELETE FROM `log_money`; diff --git a/data/sql/base/db_characters/mail.sql b/data/sql/base/db_characters/mail.sql index fccbba3ff..61af4366c 100644 --- a/data/sql/base/db_characters/mail.sql +++ b/data/sql/base/db_characters/mail.sql @@ -33,7 +33,7 @@ CREATE TABLE IF NOT EXISTS `mail` ( `checked` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_receiver` (`receiver`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Mail System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Mail System'; -- Dumping data for table acore_characters.mail: ~0 rows (approximately) DELETE FROM `mail`; diff --git a/data/sql/base/db_characters/mail_items.sql b/data/sql/base/db_characters/mail_items.sql index f0b798581..257c79567 100644 --- a/data/sql/base/db_characters/mail_items.sql +++ b/data/sql/base/db_characters/mail_items.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `mail_items` ( PRIMARY KEY (`item_guid`), KEY `idx_receiver` (`receiver`), KEY `idx_mail_id` (`mail_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- Dumping data for table acore_characters.mail_items: ~0 rows (approximately) DELETE FROM `mail_items`; diff --git a/data/sql/base/db_characters/mail_server_character.sql b/data/sql/base/db_characters/mail_server_character.sql index 9c5e99793..1086ebd77 100644 --- a/data/sql/base/db_characters/mail_server_character.sql +++ b/data/sql/base/db_characters/mail_server_character.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `mail_server_character` ( `guid` int unsigned NOT NULL, `mailId` int unsigned NOT NULL, PRIMARY KEY (`guid`,`mailId`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.mail_server_character: ~0 rows (approximately) DELETE FROM `mail_server_character`; diff --git a/data/sql/base/db_characters/mail_server_template.sql b/data/sql/base/db_characters/mail_server_template.sql index fcebe1df5..34edc0dcf 100644 --- a/data/sql/base/db_characters/mail_server_template.sql +++ b/data/sql/base/db_characters/mail_server_template.sql @@ -30,7 +30,7 @@ CREATE TABLE IF NOT EXISTS `mail_server_template` ( `body` text NOT NULL, `active` tinyint unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.mail_server_template: ~0 rows (approximately) DELETE FROM `mail_server_template`; diff --git a/data/sql/base/db_characters/pet_aura.sql b/data/sql/base/db_characters/pet_aura.sql index 65b970700..f86377552 100644 --- a/data/sql/base/db_characters/pet_aura.sql +++ b/data/sql/base/db_characters/pet_aura.sql @@ -33,7 +33,7 @@ CREATE TABLE IF NOT EXISTS `pet_aura` ( `remainTime` int NOT NULL DEFAULT '0', `remainCharges` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`casterGuid`,`spell`,`effectMask`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Pet System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Pet System'; -- Dumping data for table acore_characters.pet_aura: ~0 rows (approximately) DELETE FROM `pet_aura`; diff --git a/data/sql/base/db_characters/pet_spell.sql b/data/sql/base/db_characters/pet_spell.sql index 360d1e0f1..cbc8e6d38 100644 --- a/data/sql/base/db_characters/pet_spell.sql +++ b/data/sql/base/db_characters/pet_spell.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `pet_spell` ( `spell` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier', `active` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`spell`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Pet System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Pet System'; -- Dumping data for table acore_characters.pet_spell: ~0 rows (approximately) DELETE FROM `pet_spell`; diff --git a/data/sql/base/db_characters/pet_spell_cooldown.sql b/data/sql/base/db_characters/pet_spell_cooldown.sql index 5f424fc53..ffe171104 100644 --- a/data/sql/base/db_characters/pet_spell_cooldown.sql +++ b/data/sql/base/db_characters/pet_spell_cooldown.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `pet_spell_cooldown` ( `category` mediumint unsigned NOT NULL DEFAULT '0', `time` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`spell`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.pet_spell_cooldown: ~0 rows (approximately) DELETE FROM `pet_spell_cooldown`; diff --git a/data/sql/base/db_characters/petition.sql b/data/sql/base/db_characters/petition.sql index aa39c42a5..6a4ee3d22 100644 --- a/data/sql/base/db_characters/petition.sql +++ b/data/sql/base/db_characters/petition.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `petition` ( `type` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ownerguid`,`type`), UNIQUE KEY `index_ownerguid_petitionguid` (`ownerguid`,`petitionguid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Guild System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Guild System'; -- Dumping data for table acore_characters.petition: ~0 rows (approximately) DELETE FROM `petition`; diff --git a/data/sql/base/db_characters/petition_sign.sql b/data/sql/base/db_characters/petition_sign.sql index 7454b953d..7dabdb5bc 100644 --- a/data/sql/base/db_characters/petition_sign.sql +++ b/data/sql/base/db_characters/petition_sign.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `petition_sign` ( PRIMARY KEY (`petitionguid`,`playerguid`), KEY `Idx_playerguid` (`playerguid`), KEY `Idx_ownerguid` (`ownerguid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Guild System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Guild System'; -- Dumping data for table acore_characters.petition_sign: ~0 rows (approximately) DELETE FROM `petition_sign`; diff --git a/data/sql/base/db_characters/pool_quest_save.sql b/data/sql/base/db_characters/pool_quest_save.sql index 6cf51a432..c18705ace 100644 --- a/data/sql/base/db_characters/pool_quest_save.sql +++ b/data/sql/base/db_characters/pool_quest_save.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `pool_quest_save` ( `pool_id` int unsigned NOT NULL DEFAULT '0', `quest_id` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`pool_id`,`quest_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.pool_quest_save: ~38 rows (approximately) DELETE FROM `pool_quest_save`; diff --git a/data/sql/base/db_characters/recovery_item.sql b/data/sql/base/db_characters/recovery_item.sql index a6ff0111f..5f0491148 100644 --- a/data/sql/base/db_characters/recovery_item.sql +++ b/data/sql/base/db_characters/recovery_item.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `recovery_item` ( `Count` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`Id`), KEY `idx_guid` (`Guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.recovery_item: ~0 rows (approximately) DELETE FROM `recovery_item`; diff --git a/data/sql/base/db_characters/reserved_name.sql b/data/sql/base/db_characters/reserved_name.sql index 619a32b75..33c86e505 100644 --- a/data/sql/base/db_characters/reserved_name.sql +++ b/data/sql/base/db_characters/reserved_name.sql @@ -19,7 +19,7 @@ DROP TABLE IF EXISTS `reserved_name`; CREATE TABLE IF NOT EXISTS `reserved_name` ( `name` varchar(12) NOT NULL DEFAULT '', PRIMARY KEY (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player Reserved Names'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player Reserved Names'; -- Dumping data for table acore_characters.reserved_name: ~0 rows (approximately) DELETE FROM `reserved_name`; diff --git a/data/sql/base/db_characters/updates.sql b/data/sql/base/db_characters/updates.sql index 4e5c51b3e..c6655aae2 100644 --- a/data/sql/base/db_characters/updates.sql +++ b/data/sql/base/db_characters/updates.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `updates` ( `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'timestamp when the query was applied.', `speed` int unsigned NOT NULL DEFAULT '0' COMMENT 'time the query takes to apply in ms.', PRIMARY KEY (`name`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='List of all applied updates in this database.'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='List of all applied updates in this database.'; -- Dumping data for table acore_characters.updates: 57 rows DELETE FROM `updates`; diff --git a/data/sql/base/db_characters/updates_include.sql b/data/sql/base/db_characters/updates_include.sql index a81caa44b..621aac360 100644 --- a/data/sql/base/db_characters/updates_include.sql +++ b/data/sql/base/db_characters/updates_include.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `updates_include` ( `path` varchar(200) NOT NULL COMMENT 'directory to include. $ means relative to the source directory.', `state` enum('RELEASED','ARCHIVED','CUSTOM') NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.', PRIMARY KEY (`path`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='List of directories where we want to include sql updates.'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='List of directories where we want to include sql updates.'; -- Dumping data for table acore_characters.updates_include: 3 rows DELETE FROM `updates_include`; diff --git a/data/sql/base/db_characters/warden_action.sql b/data/sql/base/db_characters/warden_action.sql index dce37448a..1ca96fa4c 100644 --- a/data/sql/base/db_characters/warden_action.sql +++ b/data/sql/base/db_characters/warden_action.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `warden_action` ( `wardenId` smallint unsigned NOT NULL, `action` tinyint unsigned DEFAULT NULL, PRIMARY KEY (`wardenId`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_characters.warden_action: ~0 rows (approximately) DELETE FROM `warden_action`; diff --git a/data/sql/base/db_characters/worldstates.sql b/data/sql/base/db_characters/worldstates.sql index 70edac5d1..bd718c70a 100644 --- a/data/sql/base/db_characters/worldstates.sql +++ b/data/sql/base/db_characters/worldstates.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `worldstates` ( `value` int unsigned NOT NULL DEFAULT '0', `comment` tinytext, PRIMARY KEY (`entry`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Variable Saves'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Variable Saves'; -- Dumping data for table acore_characters.worldstates: ~102 rows (approximately) DELETE FROM `worldstates`; diff --git a/data/sql/base/db_world/achievement_category_dbc.sql b/data/sql/base/db_world/achievement_category_dbc.sql index 3df58bc06..b5b3a7b54 100644 --- a/data/sql/base/db_world/achievement_category_dbc.sql +++ b/data/sql/base/db_world/achievement_category_dbc.sql @@ -38,7 +38,7 @@ CREATE TABLE IF NOT EXISTS `achievement_category_dbc` ( `Name_Lang_Mask` int unsigned NOT NULL DEFAULT '0', `Ui_Order` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- Dumping data for table acore_world.achievement_category_dbc: 0 rows DELETE FROM `achievement_category_dbc`; diff --git a/data/sql/base/db_world/achievement_criteria_data.sql b/data/sql/base/db_world/achievement_criteria_data.sql index 02614a628..66e23c6da 100644 --- a/data/sql/base/db_world/achievement_criteria_data.sql +++ b/data/sql/base/db_world/achievement_criteria_data.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `achievement_criteria_data` ( `value2` mediumint unsigned NOT NULL DEFAULT '0', `ScriptName` char(64) NOT NULL DEFAULT '', PRIMARY KEY (`criteria_id`,`type`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Achievment system'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Achievment system'; -- Dumping data for table acore_world.achievement_criteria_data: 2,789 rows DELETE FROM `achievement_criteria_data`; diff --git a/data/sql/base/db_world/achievement_criteria_dbc.sql b/data/sql/base/db_world/achievement_criteria_dbc.sql index 3b252d83e..7fcf3dd70 100644 --- a/data/sql/base/db_world/achievement_criteria_dbc.sql +++ b/data/sql/base/db_world/achievement_criteria_dbc.sql @@ -49,7 +49,7 @@ CREATE TABLE IF NOT EXISTS `achievement_criteria_dbc` ( `Timer_Time` int NOT NULL DEFAULT '0', `Ui_Order` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- Dumping data for table acore_world.achievement_criteria_dbc: 0 rows DELETE FROM `achievement_criteria_dbc`; diff --git a/data/sql/base/db_world/achievement_dbc.sql b/data/sql/base/db_world/achievement_dbc.sql index d996d0df0..cd2fc0621 100644 --- a/data/sql/base/db_world/achievement_dbc.sql +++ b/data/sql/base/db_world/achievement_dbc.sql @@ -80,7 +80,7 @@ CREATE TABLE IF NOT EXISTS `achievement_dbc` ( `Minimum_Criteria` int NOT NULL DEFAULT '0', `Shares_Criteria` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- Dumping data for table acore_world.achievement_dbc: 3 rows DELETE FROM `achievement_dbc`; diff --git a/data/sql/base/db_world/achievement_reward.sql b/data/sql/base/db_world/achievement_reward.sql index a7728e663..0f0de7644 100644 --- a/data/sql/base/db_world/achievement_reward.sql +++ b/data/sql/base/db_world/achievement_reward.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `achievement_reward` ( `Body` text, `MailTemplateID` mediumint unsigned DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Loot System'; -- Dumping data for table acore_world.achievement_reward: 103 rows DELETE FROM `achievement_reward`; diff --git a/data/sql/base/db_world/achievement_reward_locale.sql b/data/sql/base/db_world/achievement_reward_locale.sql index d5e748d27..5c73abcbb 100644 --- a/data/sql/base/db_world/achievement_reward_locale.sql +++ b/data/sql/base/db_world/achievement_reward_locale.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `achievement_reward_locale` ( `Subject` text, `Text` text, PRIMARY KEY (`ID`,`Locale`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=COMPACT; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- Dumping data for table acore_world.achievement_reward_locale: ~229 rows (approximately) DELETE FROM `achievement_reward_locale`; diff --git a/data/sql/base/db_world/acore_string.sql b/data/sql/base/db_world/acore_string.sql index 4873b8e3d..232c7d2d2 100644 --- a/data/sql/base/db_world/acore_string.sql +++ b/data/sql/base/db_world/acore_string.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `acore_string` ( `locale_esMX` text, `locale_ruRU` text, PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.acore_string: 1,153 rows DELETE FROM `acore_string`; diff --git a/data/sql/base/db_world/areagroup_dbc.sql b/data/sql/base/db_world/areagroup_dbc.sql index e94b9ad0d..6acb1dc84 100644 --- a/data/sql/base/db_world/areagroup_dbc.sql +++ b/data/sql/base/db_world/areagroup_dbc.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `areagroup_dbc` ( `AreaID_6` int NOT NULL DEFAULT '0', `NextAreaID` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.areagroup_dbc: 0 rows DELETE FROM `areagroup_dbc`; diff --git a/data/sql/base/db_world/areapoi_dbc.sql b/data/sql/base/db_world/areapoi_dbc.sql index 6bd65ed3a..4db4a3195 100644 --- a/data/sql/base/db_world/areapoi_dbc.sql +++ b/data/sql/base/db_world/areapoi_dbc.sql @@ -72,7 +72,7 @@ CREATE TABLE IF NOT EXISTS `areapoi_dbc` ( `WorldStateID` int NOT NULL DEFAULT '0', `WorldMapLink` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.areapoi_dbc: 0 rows DELETE FROM `areapoi_dbc`; diff --git a/data/sql/base/db_world/areatable_dbc.sql b/data/sql/base/db_world/areatable_dbc.sql index 7bbd88768..5a81b7741 100644 --- a/data/sql/base/db_world/areatable_dbc.sql +++ b/data/sql/base/db_world/areatable_dbc.sql @@ -54,7 +54,7 @@ CREATE TABLE IF NOT EXISTS `areatable_dbc` ( `Ambient_Multiplier` float NOT NULL DEFAULT '0', `Lightid` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.areatable_dbc: 0 rows DELETE FROM `areatable_dbc`; diff --git a/data/sql/base/db_world/areatrigger_involvedrelation.sql b/data/sql/base/db_world/areatrigger_involvedrelation.sql index b78506fa3..3bc77d1bf 100644 --- a/data/sql/base/db_world/areatrigger_involvedrelation.sql +++ b/data/sql/base/db_world/areatrigger_involvedrelation.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `areatrigger_involvedrelation` ( `id` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier', `quest` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier', PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Trigger System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Trigger System'; -- Dumping data for table acore_world.areatrigger_involvedrelation: 59 rows DELETE FROM `areatrigger_involvedrelation`; diff --git a/data/sql/base/db_world/areatrigger_scripts.sql b/data/sql/base/db_world/areatrigger_scripts.sql index 9db35d40f..7c3d1a030 100644 --- a/data/sql/base/db_world/areatrigger_scripts.sql +++ b/data/sql/base/db_world/areatrigger_scripts.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `areatrigger_scripts` ( `entry` mediumint NOT NULL, `ScriptName` char(64) NOT NULL, PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.areatrigger_scripts: 138 rows DELETE FROM `areatrigger_scripts`; diff --git a/data/sql/base/db_world/areatrigger_tavern.sql b/data/sql/base/db_world/areatrigger_tavern.sql index 7298fe555..e4c8a1d99 100644 --- a/data/sql/base/db_world/areatrigger_tavern.sql +++ b/data/sql/base/db_world/areatrigger_tavern.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `areatrigger_tavern` ( `name` text, `faction` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Trigger System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Trigger System'; -- Dumping data for table acore_world.areatrigger_tavern: 113 rows DELETE FROM `areatrigger_tavern`; diff --git a/data/sql/base/db_world/areatrigger_teleport.sql b/data/sql/base/db_world/areatrigger_teleport.sql index e91908e12..e2b509bb7 100644 --- a/data/sql/base/db_world/areatrigger_teleport.sql +++ b/data/sql/base/db_world/areatrigger_teleport.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `areatrigger_teleport` ( `target_orientation` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), FULLTEXT KEY `name` (`Name`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Trigger System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Trigger System'; -- Dumping data for table acore_world.areatrigger_teleport: 273 rows DELETE FROM `areatrigger_teleport`; diff --git a/data/sql/base/db_world/auctionhouse_dbc.sql b/data/sql/base/db_world/auctionhouse_dbc.sql index 76a261a4b..1bb580b05 100644 --- a/data/sql/base/db_world/auctionhouse_dbc.sql +++ b/data/sql/base/db_world/auctionhouse_dbc.sql @@ -39,7 +39,7 @@ CREATE TABLE IF NOT EXISTS `auctionhouse_dbc` ( `Name_Lang_Unk` varchar(100) DEFAULT NULL, `Name_Lang_Mask` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.auctionhouse_dbc: 0 rows DELETE FROM `auctionhouse_dbc`; diff --git a/data/sql/base/db_world/bankbagslotprices_dbc.sql b/data/sql/base/db_world/bankbagslotprices_dbc.sql index 6ed4e530f..573641988 100644 --- a/data/sql/base/db_world/bankbagslotprices_dbc.sql +++ b/data/sql/base/db_world/bankbagslotprices_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `bankbagslotprices_dbc` ( `ID` int NOT NULL DEFAULT '0', `Cost` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.bankbagslotprices_dbc: 0 rows DELETE FROM `bankbagslotprices_dbc`; diff --git a/data/sql/base/db_world/barbershopstyle_dbc.sql b/data/sql/base/db_world/barbershopstyle_dbc.sql index eeef5a9d8..f2a8d3c80 100644 --- a/data/sql/base/db_world/barbershopstyle_dbc.sql +++ b/data/sql/base/db_world/barbershopstyle_dbc.sql @@ -58,7 +58,7 @@ CREATE TABLE IF NOT EXISTS `barbershopstyle_dbc` ( `Sex` int NOT NULL DEFAULT '0', `Data` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.barbershopstyle_dbc: 0 rows DELETE FROM `barbershopstyle_dbc`; diff --git a/data/sql/base/db_world/battleground_template.sql b/data/sql/base/db_world/battleground_template.sql index 0800fa79c..febc1254c 100644 --- a/data/sql/base/db_world/battleground_template.sql +++ b/data/sql/base/db_world/battleground_template.sql @@ -31,7 +31,7 @@ CREATE TABLE IF NOT EXISTS `battleground_template` ( `ScriptName` char(64) NOT NULL DEFAULT '', `Comment` char(38) NOT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.battleground_template: 13 rows DELETE FROM `battleground_template`; diff --git a/data/sql/base/db_world/battlemaster_entry.sql b/data/sql/base/db_world/battlemaster_entry.sql index 13cce0d75..be6be4036 100644 --- a/data/sql/base/db_world/battlemaster_entry.sql +++ b/data/sql/base/db_world/battlemaster_entry.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `battlemaster_entry` ( `entry` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Entry of a creature', `bg_template` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Battleground template id', PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.battlemaster_entry: 146 rows DELETE FROM `battlemaster_entry`; diff --git a/data/sql/base/db_world/battlemasterlist_dbc.sql b/data/sql/base/db_world/battlemasterlist_dbc.sql index 389e55317..cc90a9a2a 100644 --- a/data/sql/base/db_world/battlemasterlist_dbc.sql +++ b/data/sql/base/db_world/battlemasterlist_dbc.sql @@ -50,7 +50,7 @@ CREATE TABLE IF NOT EXISTS `battlemasterlist_dbc` ( `Minlevel` int NOT NULL DEFAULT '0', `Maxlevel` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.battlemasterlist_dbc: 0 rows DELETE FROM `battlemasterlist_dbc`; diff --git a/data/sql/base/db_world/broadcast_text.sql b/data/sql/base/db_world/broadcast_text.sql index 382321263..7bd99a336 100644 --- a/data/sql/base/db_world/broadcast_text.sql +++ b/data/sql/base/db_world/broadcast_text.sql @@ -32,7 +32,7 @@ CREATE TABLE IF NOT EXISTS `broadcast_text` ( `Flags` mediumint DEFAULT NULL, `VerifiedBuild` smallint DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.broadcast_text: 73,039 rows DELETE FROM `broadcast_text`; diff --git a/data/sql/base/db_world/broadcast_text_locale.sql b/data/sql/base/db_world/broadcast_text_locale.sql index 3392fa7f9..acdefff98 100644 --- a/data/sql/base/db_world/broadcast_text_locale.sql +++ b/data/sql/base/db_world/broadcast_text_locale.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `broadcast_text_locale` ( `FemaleText` text, `VerifiedBuild` smallint DEFAULT '0', PRIMARY KEY (`ID`,`locale`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=COMPACT; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- Dumping data for table acore_world.broadcast_text_locale: ~550,208 rows (approximately) DELETE FROM `broadcast_text_locale`; diff --git a/data/sql/base/db_world/charstartoutfit_dbc.sql b/data/sql/base/db_world/charstartoutfit_dbc.sql index d2ad8fc83..af30484f5 100644 --- a/data/sql/base/db_world/charstartoutfit_dbc.sql +++ b/data/sql/base/db_world/charstartoutfit_dbc.sql @@ -95,7 +95,7 @@ CREATE TABLE IF NOT EXISTS `charstartoutfit_dbc` ( `InventoryType_23` int NOT NULL DEFAULT '0', `InventoryType_24` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.charstartoutfit_dbc: 0 rows DELETE FROM `charstartoutfit_dbc`; diff --git a/data/sql/base/db_world/chartitles_dbc.sql b/data/sql/base/db_world/chartitles_dbc.sql index f948da027..a0b4d681e 100644 --- a/data/sql/base/db_world/chartitles_dbc.sql +++ b/data/sql/base/db_world/chartitles_dbc.sql @@ -55,7 +55,7 @@ CREATE TABLE IF NOT EXISTS `chartitles_dbc` ( `Name1_Lang_Mask` int unsigned NOT NULL DEFAULT '0', `Mask_ID` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.chartitles_dbc: 0 rows DELETE FROM `chartitles_dbc`; diff --git a/data/sql/base/db_world/chatchannels_dbc.sql b/data/sql/base/db_world/chatchannels_dbc.sql index af1f317e9..8c280b6ad 100644 --- a/data/sql/base/db_world/chatchannels_dbc.sql +++ b/data/sql/base/db_world/chatchannels_dbc.sql @@ -55,7 +55,7 @@ CREATE TABLE IF NOT EXISTS `chatchannels_dbc` ( `Shortcut_Lang_Unk` varchar(100) DEFAULT NULL, `Shortcut_Lang_Mask` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.chatchannels_dbc: 0 rows DELETE FROM `chatchannels_dbc`; diff --git a/data/sql/base/db_world/chrclasses_dbc.sql b/data/sql/base/db_world/chrclasses_dbc.sql index fa49e6ee6..8aca6a4cd 100644 --- a/data/sql/base/db_world/chrclasses_dbc.sql +++ b/data/sql/base/db_world/chrclasses_dbc.sql @@ -78,7 +78,7 @@ CREATE TABLE IF NOT EXISTS `chrclasses_dbc` ( `CinematicSequenceID` int NOT NULL DEFAULT '0', `Required_Expansion` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.chrclasses_dbc: 0 rows DELETE FROM `chrclasses_dbc`; diff --git a/data/sql/base/db_world/chrraces_dbc.sql b/data/sql/base/db_world/chrraces_dbc.sql index 85cf74bdf..5eca017b4 100644 --- a/data/sql/base/db_world/chrraces_dbc.sql +++ b/data/sql/base/db_world/chrraces_dbc.sql @@ -87,7 +87,7 @@ CREATE TABLE IF NOT EXISTS `chrraces_dbc` ( `HairCustomization` varchar(100) DEFAULT NULL, `Required_Expansion` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.chrraces_dbc: 0 rows DELETE FROM `chrraces_dbc`; diff --git a/data/sql/base/db_world/cinematiccamera_dbc.sql b/data/sql/base/db_world/cinematiccamera_dbc.sql index df29b755a..9370f258a 100644 --- a/data/sql/base/db_world/cinematiccamera_dbc.sql +++ b/data/sql/base/db_world/cinematiccamera_dbc.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `cinematiccamera_dbc` ( `locationZ` float NOT NULL DEFAULT '0', `rotation` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='Cinematic camera DBC'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Cinematic camera DBC'; -- Dumping data for table acore_world.cinematiccamera_dbc: 0 rows DELETE FROM `cinematiccamera_dbc`; diff --git a/data/sql/base/db_world/cinematicsequences_dbc.sql b/data/sql/base/db_world/cinematicsequences_dbc.sql index 5f71cfe18..8e839c1b2 100644 --- a/data/sql/base/db_world/cinematicsequences_dbc.sql +++ b/data/sql/base/db_world/cinematicsequences_dbc.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `cinematicsequences_dbc` ( `Camera_7` int NOT NULL DEFAULT '0', `Camera_8` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.cinematicsequences_dbc: 0 rows DELETE FROM `cinematicsequences_dbc`; diff --git a/data/sql/base/db_world/command.sql b/data/sql/base/db_world/command.sql index 537a814ca..43c7fa09e 100644 --- a/data/sql/base/db_world/command.sql +++ b/data/sql/base/db_world/command.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `command` ( `security` tinyint unsigned NOT NULL DEFAULT '0', `help` longtext, PRIMARY KEY (`name`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Chat System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Chat System'; -- Dumping data for table acore_world.command: 585 rows DELETE FROM `command`; diff --git a/data/sql/base/db_world/conditions.sql b/data/sql/base/db_world/conditions.sql index f8d5c62a9..4cc3e2235 100644 --- a/data/sql/base/db_world/conditions.sql +++ b/data/sql/base/db_world/conditions.sql @@ -33,7 +33,7 @@ CREATE TABLE IF NOT EXISTS `conditions` ( `ScriptName` char(64) NOT NULL DEFAULT '', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Condition System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Condition System'; -- Dumping data for table acore_world.conditions: 14,884 rows DELETE FROM `conditions`; diff --git a/data/sql/base/db_world/creature.sql b/data/sql/base/db_world/creature.sql index 5f65f29c9..bc25fa3ba 100644 --- a/data/sql/base/db_world/creature.sql +++ b/data/sql/base/db_world/creature.sql @@ -45,7 +45,7 @@ CREATE TABLE IF NOT EXISTS `creature` ( PRIMARY KEY (`guid`), KEY `idx_map` (`map`), KEY `idx_id` (`id1`) -) ENGINE=MyISAM AUTO_INCREMENT=3110422 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='Creature System'; +) ENGINE=MyISAM AUTO_INCREMENT=3110422 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Creature System'; -- Dumping data for table acore_world.creature: 147,348 rows DELETE FROM `creature`; diff --git a/data/sql/base/db_world/creature_addon.sql b/data/sql/base/db_world/creature_addon.sql index e4260aa98..48c4a4b6d 100644 --- a/data/sql/base/db_world/creature_addon.sql +++ b/data/sql/base/db_world/creature_addon.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `creature_addon` ( `visibilityDistanceType` tinyint unsigned NOT NULL DEFAULT '0', `auras` text, PRIMARY KEY (`guid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creature_addon: 35,018 rows DELETE FROM `creature_addon`; diff --git a/data/sql/base/db_world/creature_classlevelstats.sql b/data/sql/base/db_world/creature_classlevelstats.sql index 101fa088f..ee28e573a 100644 --- a/data/sql/base/db_world/creature_classlevelstats.sql +++ b/data/sql/base/db_world/creature_classlevelstats.sql @@ -31,7 +31,7 @@ CREATE TABLE IF NOT EXISTS `creature_classlevelstats` ( `damage_exp2` float NOT NULL DEFAULT '0', `comment` text, PRIMARY KEY (`level`,`class`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creature_classlevelstats: 400 rows DELETE FROM `creature_classlevelstats`; diff --git a/data/sql/base/db_world/creature_equip_template.sql b/data/sql/base/db_world/creature_equip_template.sql index 64d458d6b..caf6ad5be 100644 --- a/data/sql/base/db_world/creature_equip_template.sql +++ b/data/sql/base/db_world/creature_equip_template.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `creature_equip_template` ( `ItemID3` mediumint unsigned NOT NULL DEFAULT '0', `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`CreatureID`,`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creature_equip_template: 10,762 rows DELETE FROM `creature_equip_template`; diff --git a/data/sql/base/db_world/creature_formations.sql b/data/sql/base/db_world/creature_formations.sql index c25eaedad..e15d7bfb8 100644 --- a/data/sql/base/db_world/creature_formations.sql +++ b/data/sql/base/db_world/creature_formations.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `creature_formations` ( `point_2` smallint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`memberGUID`), CONSTRAINT `creature_formations_chk_1` CHECK (((`dist` >= 0) and (`angle` >= 0))) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creature_formations: 3,873 rows DELETE FROM `creature_formations`; diff --git a/data/sql/base/db_world/creature_loot_template.sql b/data/sql/base/db_world/creature_loot_template.sql index e212be2e8..c356f7e14 100644 --- a/data/sql/base/db_world/creature_loot_template.sql +++ b/data/sql/base/db_world/creature_loot_template.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `creature_loot_template` ( `MaxCount` tinyint unsigned NOT NULL DEFAULT '1', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`Entry`,`Item`,`Reference`,`GroupId`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Loot System'; -- Dumping data for table acore_world.creature_loot_template: 329,593 rows DELETE FROM `creature_loot_template`; diff --git a/data/sql/base/db_world/creature_model_info.sql b/data/sql/base/db_world/creature_model_info.sql index 7ed7be645..4126015dd 100644 --- a/data/sql/base/db_world/creature_model_info.sql +++ b/data/sql/base/db_world/creature_model_info.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `creature_model_info` ( `Gender` tinyint unsigned NOT NULL DEFAULT '2', `DisplayID_Other_Gender` mediumint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`DisplayID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Creature System (Model related info)'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Creature System (Model related info)'; -- Dumping data for table acore_world.creature_model_info: 24,143 rows DELETE FROM `creature_model_info`; diff --git a/data/sql/base/db_world/creature_movement_override.sql b/data/sql/base/db_world/creature_movement_override.sql index 80ee22b13..0e9d15fdd 100644 --- a/data/sql/base/db_world/creature_movement_override.sql +++ b/data/sql/base/db_world/creature_movement_override.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `creature_movement_override` ( `Random` tinyint unsigned DEFAULT NULL, `InteractionPauseTimer` int unsigned DEFAULT NULL COMMENT 'Time (in milliseconds) during which creature will not move after interaction with player', PRIMARY KEY (`SpawnId`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creature_movement_override: 11 rows DELETE FROM `creature_movement_override`; diff --git a/data/sql/base/db_world/creature_onkill_reputation.sql b/data/sql/base/db_world/creature_onkill_reputation.sql index ba10a877e..709bee4e4 100644 --- a/data/sql/base/db_world/creature_onkill_reputation.sql +++ b/data/sql/base/db_world/creature_onkill_reputation.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `creature_onkill_reputation` ( `RewOnKillRepValue2` mediumint NOT NULL DEFAULT '0', `TeamDependent` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`creature_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='Creature OnKill Reputation gain'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Creature OnKill Reputation gain'; -- Dumping data for table acore_world.creature_onkill_reputation: 2,056 rows DELETE FROM `creature_onkill_reputation`; diff --git a/data/sql/base/db_world/creature_questender.sql b/data/sql/base/db_world/creature_questender.sql index 6f3191975..6fdd34c70 100644 --- a/data/sql/base/db_world/creature_questender.sql +++ b/data/sql/base/db_world/creature_questender.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `creature_questender` ( `id` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier', `quest` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier', PRIMARY KEY (`id`,`quest`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Creature System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Creature System'; -- Dumping data for table acore_world.creature_questender: 7,898 rows DELETE FROM `creature_questender`; diff --git a/data/sql/base/db_world/creature_questitem.sql b/data/sql/base/db_world/creature_questitem.sql index c7a0b2e51..a865e2a54 100644 --- a/data/sql/base/db_world/creature_questitem.sql +++ b/data/sql/base/db_world/creature_questitem.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `creature_questitem` ( `ItemId` int unsigned NOT NULL DEFAULT '0', `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`CreatureEntry`,`Idx`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creature_questitem: 4,416 rows DELETE FROM `creature_questitem`; diff --git a/data/sql/base/db_world/creature_queststarter.sql b/data/sql/base/db_world/creature_queststarter.sql index 70739abf7..b725e5ff5 100644 --- a/data/sql/base/db_world/creature_queststarter.sql +++ b/data/sql/base/db_world/creature_queststarter.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `creature_queststarter` ( `id` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier', `quest` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier', PRIMARY KEY (`id`,`quest`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Creature System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Creature System'; -- Dumping data for table acore_world.creature_queststarter: 7,497 rows DELETE FROM `creature_queststarter`; diff --git a/data/sql/base/db_world/creature_summon_groups.sql b/data/sql/base/db_world/creature_summon_groups.sql index 0aba0a59f..044786c18 100644 --- a/data/sql/base/db_world/creature_summon_groups.sql +++ b/data/sql/base/db_world/creature_summon_groups.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `creature_summon_groups` ( `summonType` tinyint unsigned NOT NULL DEFAULT '0', `summonTime` int unsigned NOT NULL DEFAULT '0', `Comment` varchar(255) NOT NULL DEFAULT '' -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creature_summon_groups: 624 rows DELETE FROM `creature_summon_groups`; diff --git a/data/sql/base/db_world/creature_template.sql b/data/sql/base/db_world/creature_template.sql index d53d389e2..59ded9205 100644 --- a/data/sql/base/db_world/creature_template.sql +++ b/data/sql/base/db_world/creature_template.sql @@ -84,7 +84,7 @@ CREATE TABLE IF NOT EXISTS `creature_template` ( `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`entry`), KEY `idx_name` (`name`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Creature System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Creature System'; -- Dumping data for table acore_world.creature_template: 29,953 rows DELETE FROM `creature_template`; diff --git a/data/sql/base/db_world/creature_template_addon.sql b/data/sql/base/db_world/creature_template_addon.sql index 193eaa3ea..886586113 100644 --- a/data/sql/base/db_world/creature_template_addon.sql +++ b/data/sql/base/db_world/creature_template_addon.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `creature_template_addon` ( `visibilityDistanceType` tinyint unsigned NOT NULL DEFAULT '0', `auras` text, PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creature_template_addon: 11,820 rows DELETE FROM `creature_template_addon`; diff --git a/data/sql/base/db_world/creature_template_locale.sql b/data/sql/base/db_world/creature_template_locale.sql index 9a21e42c1..ce796d412 100644 --- a/data/sql/base/db_world/creature_template_locale.sql +++ b/data/sql/base/db_world/creature_template_locale.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `creature_template_locale` ( `Title` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`entry`,`locale`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creature_template_locale: 218,054 rows DELETE FROM `creature_template_locale`; diff --git a/data/sql/base/db_world/creature_template_movement.sql b/data/sql/base/db_world/creature_template_movement.sql index 6af0e4aed..cdd0753c1 100644 --- a/data/sql/base/db_world/creature_template_movement.sql +++ b/data/sql/base/db_world/creature_template_movement.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `creature_template_movement` ( `Random` tinyint unsigned DEFAULT NULL, `InteractionPauseTimer` int unsigned DEFAULT NULL COMMENT 'Time (in milliseconds) during which creature will not move after interaction with player', PRIMARY KEY (`CreatureId`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creature_template_movement: 4,440 rows DELETE FROM `creature_template_movement`; diff --git a/data/sql/base/db_world/creature_template_resistance.sql b/data/sql/base/db_world/creature_template_resistance.sql index 302839ff9..561d3f67e 100644 --- a/data/sql/base/db_world/creature_template_resistance.sql +++ b/data/sql/base/db_world/creature_template_resistance.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `creature_template_resistance` ( `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`CreatureID`,`School`), CONSTRAINT `creature_template_resistance_chk_1` CHECK (((`School` >= 1) and (`School` <= 6))) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creature_template_resistance: ~2,225 rows (approximately) DELETE FROM `creature_template_resistance`; diff --git a/data/sql/base/db_world/creature_template_spell.sql b/data/sql/base/db_world/creature_template_spell.sql index d8e75f489..6b1a2064b 100644 --- a/data/sql/base/db_world/creature_template_spell.sql +++ b/data/sql/base/db_world/creature_template_spell.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `creature_template_spell` ( `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`CreatureID`,`Index`), CONSTRAINT `creature_template_spell_chk_1` CHECK (((`Index` >= 0) and (`Index` <= 7))) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creature_template_spell: ~9,511 rows (approximately) DELETE FROM `creature_template_spell`; diff --git a/data/sql/base/db_world/creature_text.sql b/data/sql/base/db_world/creature_text.sql index 441a0188a..286956560 100644 --- a/data/sql/base/db_world/creature_text.sql +++ b/data/sql/base/db_world/creature_text.sql @@ -32,7 +32,7 @@ CREATE TABLE IF NOT EXISTS `creature_text` ( `comment` varchar(255) DEFAULT '', PRIMARY KEY (`CreatureID`,`GroupID`,`ID`), CONSTRAINT `creature_text_chk_1` CHECK ((`Probability` >= 0)) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creature_text: 18,300 rows DELETE FROM `creature_text`; diff --git a/data/sql/base/db_world/creature_text_locale.sql b/data/sql/base/db_world/creature_text_locale.sql index 073889249..e397d692b 100644 --- a/data/sql/base/db_world/creature_text_locale.sql +++ b/data/sql/base/db_world/creature_text_locale.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `creature_text_locale` ( `Locale` varchar(4) NOT NULL, `Text` text, PRIMARY KEY (`CreatureID`,`GroupID`,`ID`,`Locale`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=COMPACT; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- Dumping data for table acore_world.creature_text_locale: ~14,241 rows (approximately) DELETE FROM `creature_text_locale`; diff --git a/data/sql/base/db_world/creaturedisplayinfo_dbc.sql b/data/sql/base/db_world/creaturedisplayinfo_dbc.sql index b416f8130..c93d05a9f 100644 --- a/data/sql/base/db_world/creaturedisplayinfo_dbc.sql +++ b/data/sql/base/db_world/creaturedisplayinfo_dbc.sql @@ -34,7 +34,7 @@ CREATE TABLE IF NOT EXISTS `creaturedisplayinfo_dbc` ( `CreatureGeosetData` int NOT NULL DEFAULT '0', `ObjectEffectPackageID` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creaturedisplayinfo_dbc: 0 rows DELETE FROM `creaturedisplayinfo_dbc`; diff --git a/data/sql/base/db_world/creaturedisplayinfoextra_dbc.sql b/data/sql/base/db_world/creaturedisplayinfoextra_dbc.sql index 83dc6f8c6..cd2df397b 100644 --- a/data/sql/base/db_world/creaturedisplayinfoextra_dbc.sql +++ b/data/sql/base/db_world/creaturedisplayinfoextra_dbc.sql @@ -37,9 +37,9 @@ CREATE TABLE IF NOT EXISTS `creaturedisplayinfoextra_dbc` ( `NPCItemDisplay10` int unsigned NOT NULL DEFAULT '0', `NPCItemDisplay11` int unsigned NOT NULL DEFAULT '0', `Flags` int unsigned NOT NULL DEFAULT '0', - `BakeName` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, + `BakeName` varchar(100) NOT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creaturedisplayinfoextra_dbc: 0 rows DELETE FROM `creaturedisplayinfoextra_dbc`; diff --git a/data/sql/base/db_world/creaturefamily_dbc.sql b/data/sql/base/db_world/creaturefamily_dbc.sql index 763fa083f..18fa1b54e 100644 --- a/data/sql/base/db_world/creaturefamily_dbc.sql +++ b/data/sql/base/db_world/creaturefamily_dbc.sql @@ -46,7 +46,7 @@ CREATE TABLE IF NOT EXISTS `creaturefamily_dbc` ( `Name_Lang_Mask` int unsigned NOT NULL DEFAULT '0', `IconFile` varchar(100) DEFAULT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creaturefamily_dbc: 0 rows DELETE FROM `creaturefamily_dbc`; diff --git a/data/sql/base/db_world/creaturemodeldata_dbc.sql b/data/sql/base/db_world/creaturemodeldata_dbc.sql index 7dcfb1f40..438c544bf 100644 --- a/data/sql/base/db_world/creaturemodeldata_dbc.sql +++ b/data/sql/base/db_world/creaturemodeldata_dbc.sql @@ -46,7 +46,7 @@ CREATE TABLE IF NOT EXISTS `creaturemodeldata_dbc` ( `MissileCollisionPush` float NOT NULL DEFAULT '0', `MissileCollisionRaise` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creaturemodeldata_dbc: 0 rows DELETE FROM `creaturemodeldata_dbc`; diff --git a/data/sql/base/db_world/creaturespelldata_dbc.sql b/data/sql/base/db_world/creaturespelldata_dbc.sql index 72d430e09..de66b6984 100644 --- a/data/sql/base/db_world/creaturespelldata_dbc.sql +++ b/data/sql/base/db_world/creaturespelldata_dbc.sql @@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `creaturespelldata_dbc` ( `Availability_3` int NOT NULL DEFAULT '0', `Availability_4` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creaturespelldata_dbc: 0 rows DELETE FROM `creaturespelldata_dbc`; diff --git a/data/sql/base/db_world/creaturetype_dbc.sql b/data/sql/base/db_world/creaturetype_dbc.sql index 2b9fa327d..34984153a 100644 --- a/data/sql/base/db_world/creaturetype_dbc.sql +++ b/data/sql/base/db_world/creaturetype_dbc.sql @@ -37,7 +37,7 @@ CREATE TABLE IF NOT EXISTS `creaturetype_dbc` ( `Name_Lang_Mask` int unsigned NOT NULL DEFAULT '0', `Flags` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.creaturetype_dbc: 0 rows DELETE FROM `creaturetype_dbc`; diff --git a/data/sql/base/db_world/currencytypes_dbc.sql b/data/sql/base/db_world/currencytypes_dbc.sql index 3736a20a1..31e638422 100644 --- a/data/sql/base/db_world/currencytypes_dbc.sql +++ b/data/sql/base/db_world/currencytypes_dbc.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `currencytypes_dbc` ( `CategoryID` int NOT NULL DEFAULT '0', `BitIndex` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.currencytypes_dbc: 0 rows DELETE FROM `currencytypes_dbc`; diff --git a/data/sql/base/db_world/destructiblemodeldata_dbc.sql b/data/sql/base/db_world/destructiblemodeldata_dbc.sql index ec95ce485..493b3dfa8 100644 --- a/data/sql/base/db_world/destructiblemodeldata_dbc.sql +++ b/data/sql/base/db_world/destructiblemodeldata_dbc.sql @@ -37,7 +37,7 @@ CREATE TABLE IF NOT EXISTS `destructiblemodeldata_dbc` ( `Field17` int NOT NULL DEFAULT '0', `Field18` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.destructiblemodeldata_dbc: 0 rows DELETE FROM `destructiblemodeldata_dbc`; diff --git a/data/sql/base/db_world/disables.sql b/data/sql/base/db_world/disables.sql index 0b2f0acfa..f07f77f16 100644 --- a/data/sql/base/db_world/disables.sql +++ b/data/sql/base/db_world/disables.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `disables` ( `params_1` varchar(255) NOT NULL DEFAULT '', `comment` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`sourceType`,`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.disables: 905 rows DELETE FROM `disables`; diff --git a/data/sql/base/db_world/disenchant_loot_template.sql b/data/sql/base/db_world/disenchant_loot_template.sql index 970d2b2c7..1bbb12eac 100644 --- a/data/sql/base/db_world/disenchant_loot_template.sql +++ b/data/sql/base/db_world/disenchant_loot_template.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `disenchant_loot_template` ( `MaxCount` tinyint unsigned NOT NULL DEFAULT '1', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`Entry`,`Item`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Loot System'; -- Dumping data for table acore_world.disenchant_loot_template: 124 rows DELETE FROM `disenchant_loot_template`; diff --git a/data/sql/base/db_world/dungeon_access_requirements.sql b/data/sql/base/db_world/dungeon_access_requirements.sql index 7eacc908a..1daa12ea2 100644 --- a/data/sql/base/db_world/dungeon_access_requirements.sql +++ b/data/sql/base/db_world/dungeon_access_requirements.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `dungeon_access_requirements` ( `leader_only` tinyint NOT NULL DEFAULT '0' COMMENT '0 = check the requirement for the player trying to enter, 1 = check the requirement for the party leader', `comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`dungeon_access_id`,`requirement_type`,`requirement_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Add (multiple) requirements before being able to enter a dungeon/raid'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Add (multiple) requirements before being able to enter a dungeon/raid'; -- Dumping data for table acore_world.dungeon_access_requirements: 35 rows DELETE FROM `dungeon_access_requirements`; diff --git a/data/sql/base/db_world/dungeon_access_template.sql b/data/sql/base/db_world/dungeon_access_template.sql index 7c8e773da..657f6c698 100644 --- a/data/sql/base/db_world/dungeon_access_template.sql +++ b/data/sql/base/db_world/dungeon_access_template.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `dungeon_access_template` ( `comment` varchar(255) DEFAULT NULL COMMENT 'Dungeon Name 5/10/25/40 man - Normal/Heroic', PRIMARY KEY (`id`), KEY `FK_dungeon_access_template__instance_template` (`map_id`) -) ENGINE=MyISAM AUTO_INCREMENT=122 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='Dungeon/raid access template and single requirements'; +) ENGINE=MyISAM AUTO_INCREMENT=122 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Dungeon/raid access template and single requirements'; -- Dumping data for table acore_world.dungeon_access_template: 121 rows DELETE FROM `dungeon_access_template`; diff --git a/data/sql/base/db_world/dungeonencounter_dbc.sql b/data/sql/base/db_world/dungeonencounter_dbc.sql index 038af0200..b1a89f606 100644 --- a/data/sql/base/db_world/dungeonencounter_dbc.sql +++ b/data/sql/base/db_world/dungeonencounter_dbc.sql @@ -41,7 +41,7 @@ CREATE TABLE IF NOT EXISTS `dungeonencounter_dbc` ( `Name_Lang_Mask` int unsigned NOT NULL DEFAULT '0', `SpellIconID` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.dungeonencounter_dbc: 0 rows DELETE FROM `dungeonencounter_dbc`; diff --git a/data/sql/base/db_world/durabilitycosts_dbc.sql b/data/sql/base/db_world/durabilitycosts_dbc.sql index 4b7dfaa3b..86335ea22 100644 --- a/data/sql/base/db_world/durabilitycosts_dbc.sql +++ b/data/sql/base/db_world/durabilitycosts_dbc.sql @@ -48,7 +48,7 @@ CREATE TABLE IF NOT EXISTS `durabilitycosts_dbc` ( `ArmorSubClassCost_7` int NOT NULL DEFAULT '0', `ArmorSubClassCost_8` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.durabilitycosts_dbc: 0 rows DELETE FROM `durabilitycosts_dbc`; diff --git a/data/sql/base/db_world/durabilityquality_dbc.sql b/data/sql/base/db_world/durabilityquality_dbc.sql index 8aa7c0628..e3a62a414 100644 --- a/data/sql/base/db_world/durabilityquality_dbc.sql +++ b/data/sql/base/db_world/durabilityquality_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `durabilityquality_dbc` ( `ID` int NOT NULL DEFAULT '0', `Data` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.durabilityquality_dbc: 0 rows DELETE FROM `durabilityquality_dbc`; diff --git a/data/sql/base/db_world/emotes_dbc.sql b/data/sql/base/db_world/emotes_dbc.sql index a6ac26134..5d269e27b 100644 --- a/data/sql/base/db_world/emotes_dbc.sql +++ b/data/sql/base/db_world/emotes_dbc.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `emotes_dbc` ( `EmoteSpecProcParam` int NOT NULL DEFAULT '0', `EventSoundID` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.emotes_dbc: 0 rows DELETE FROM `emotes_dbc`; diff --git a/data/sql/base/db_world/emotestext_dbc.sql b/data/sql/base/db_world/emotestext_dbc.sql index 1c44b6502..f1ab08ee5 100644 --- a/data/sql/base/db_world/emotestext_dbc.sql +++ b/data/sql/base/db_world/emotestext_dbc.sql @@ -37,7 +37,7 @@ CREATE TABLE IF NOT EXISTS `emotestext_dbc` ( `EmoteText_15` int NOT NULL DEFAULT '0', `EmoteText_16` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.emotestext_dbc: 0 rows DELETE FROM `emotestext_dbc`; diff --git a/data/sql/base/db_world/event_scripts.sql b/data/sql/base/db_world/event_scripts.sql index a8da3cb22..76522a598 100644 --- a/data/sql/base/db_world/event_scripts.sql +++ b/data/sql/base/db_world/event_scripts.sql @@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `event_scripts` ( `y` float NOT NULL DEFAULT '0', `z` float NOT NULL DEFAULT '0', `o` float NOT NULL DEFAULT '0' -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.event_scripts: 468 rows DELETE FROM `event_scripts`; diff --git a/data/sql/base/db_world/exploration_basexp.sql b/data/sql/base/db_world/exploration_basexp.sql index b47aaaeec..9a4118715 100644 --- a/data/sql/base/db_world/exploration_basexp.sql +++ b/data/sql/base/db_world/exploration_basexp.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `exploration_basexp` ( `level` tinyint unsigned NOT NULL DEFAULT '0', `basexp` mediumint NOT NULL DEFAULT '0', PRIMARY KEY (`level`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Exploration System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Exploration System'; -- Dumping data for table acore_world.exploration_basexp: 80 rows DELETE FROM `exploration_basexp`; diff --git a/data/sql/base/db_world/faction_dbc.sql b/data/sql/base/db_world/faction_dbc.sql index f203eb7db..dd12ce5a4 100644 --- a/data/sql/base/db_world/faction_dbc.sql +++ b/data/sql/base/db_world/faction_dbc.sql @@ -75,7 +75,7 @@ CREATE TABLE IF NOT EXISTS `faction_dbc` ( `Description_Lang_Unk` varchar(100) DEFAULT NULL, `Description_Lang_Mask` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.faction_dbc: 0 rows DELETE FROM `faction_dbc`; diff --git a/data/sql/base/db_world/factiontemplate_dbc.sql b/data/sql/base/db_world/factiontemplate_dbc.sql index 7e0640c58..10102ba50 100644 --- a/data/sql/base/db_world/factiontemplate_dbc.sql +++ b/data/sql/base/db_world/factiontemplate_dbc.sql @@ -32,7 +32,7 @@ CREATE TABLE IF NOT EXISTS `factiontemplate_dbc` ( `Friend_3` int NOT NULL DEFAULT '0', `Friend_4` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.factiontemplate_dbc: 841 rows DELETE FROM `factiontemplate_dbc`; diff --git a/data/sql/base/db_world/fishing_loot_template.sql b/data/sql/base/db_world/fishing_loot_template.sql index 511153d0b..38afed112 100644 --- a/data/sql/base/db_world/fishing_loot_template.sql +++ b/data/sql/base/db_world/fishing_loot_template.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `fishing_loot_template` ( `MaxCount` tinyint unsigned NOT NULL DEFAULT '1', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`Entry`,`Item`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Loot System'; -- Dumping data for table acore_world.fishing_loot_template: 254 rows DELETE FROM `fishing_loot_template`; diff --git a/data/sql/base/db_world/game_event.sql b/data/sql/base/db_world/game_event.sql index 76648e48e..f20f24d36 100644 --- a/data/sql/base/db_world/game_event.sql +++ b/data/sql/base/db_world/game_event.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `game_event` ( `world_event` tinyint unsigned NOT NULL DEFAULT '0' COMMENT '0 if normal event, 1 if world event', `announce` tinyint unsigned NOT NULL DEFAULT '2' COMMENT '0 dont announce, 1 announce, 2 value from config', PRIMARY KEY (`eventEntry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event: 83 rows DELETE FROM `game_event`; diff --git a/data/sql/base/db_world/game_event_arena_seasons.sql b/data/sql/base/db_world/game_event_arena_seasons.sql index 7ee632fcf..d1405d671 100644 --- a/data/sql/base/db_world/game_event_arena_seasons.sql +++ b/data/sql/base/db_world/game_event_arena_seasons.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `game_event_arena_seasons` ( `eventEntry` tinyint unsigned NOT NULL COMMENT 'Entry of the game event', `season` tinyint unsigned NOT NULL COMMENT 'Arena season number', UNIQUE KEY `season` (`season`,`eventEntry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event_arena_seasons: 8 rows DELETE FROM `game_event_arena_seasons`; diff --git a/data/sql/base/db_world/game_event_battleground_holiday.sql b/data/sql/base/db_world/game_event_battleground_holiday.sql index 59345dedc..0226ba816 100644 --- a/data/sql/base/db_world/game_event_battleground_holiday.sql +++ b/data/sql/base/db_world/game_event_battleground_holiday.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `game_event_battleground_holiday` ( `eventEntry` tinyint unsigned NOT NULL COMMENT 'Entry of the game event', `bgflag` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`eventEntry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event_battleground_holiday: 6 rows DELETE FROM `game_event_battleground_holiday`; diff --git a/data/sql/base/db_world/game_event_condition.sql b/data/sql/base/db_world/game_event_condition.sql index 6b7f72926..ecbbfe030 100644 --- a/data/sql/base/db_world/game_event_condition.sql +++ b/data/sql/base/db_world/game_event_condition.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `game_event_condition` ( `done_world_state_field` smallint unsigned NOT NULL DEFAULT '0', `description` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`eventEntry`,`condition_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event_condition: 0 rows DELETE FROM `game_event_condition`; diff --git a/data/sql/base/db_world/game_event_creature.sql b/data/sql/base/db_world/game_event_creature.sql index f787d6ab6..67129174d 100644 --- a/data/sql/base/db_world/game_event_creature.sql +++ b/data/sql/base/db_world/game_event_creature.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `game_event_creature` ( `eventEntry` tinyint NOT NULL COMMENT 'Entry of the game event. Put negative entry to remove during event.', `guid` int unsigned NOT NULL, PRIMARY KEY (`guid`,`eventEntry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event_creature: 8,817 rows DELETE FROM `game_event_creature`; diff --git a/data/sql/base/db_world/game_event_creature_quest.sql b/data/sql/base/db_world/game_event_creature_quest.sql index d2af3ed9d..9d2275e60 100644 --- a/data/sql/base/db_world/game_event_creature_quest.sql +++ b/data/sql/base/db_world/game_event_creature_quest.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `game_event_creature_quest` ( `id` mediumint unsigned NOT NULL DEFAULT '0', `quest` mediumint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`,`quest`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event_creature_quest: 215 rows DELETE FROM `game_event_creature_quest`; diff --git a/data/sql/base/db_world/game_event_gameobject.sql b/data/sql/base/db_world/game_event_gameobject.sql index a882e2761..2bd1cd427 100644 --- a/data/sql/base/db_world/game_event_gameobject.sql +++ b/data/sql/base/db_world/game_event_gameobject.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `game_event_gameobject` ( `eventEntry` tinyint NOT NULL COMMENT 'Entry of the game event. Put negative entry to remove during event.', `guid` int unsigned NOT NULL, PRIMARY KEY (`guid`,`eventEntry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event_gameobject: 21,709 rows DELETE FROM `game_event_gameobject`; diff --git a/data/sql/base/db_world/game_event_gameobject_quest.sql b/data/sql/base/db_world/game_event_gameobject_quest.sql index 509fb8588..f290491b9 100644 --- a/data/sql/base/db_world/game_event_gameobject_quest.sql +++ b/data/sql/base/db_world/game_event_gameobject_quest.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `game_event_gameobject_quest` ( `id` mediumint unsigned NOT NULL DEFAULT '0', `quest` mediumint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`,`quest`,`eventEntry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event_gameobject_quest: 78 rows DELETE FROM `game_event_gameobject_quest`; diff --git a/data/sql/base/db_world/game_event_model_equip.sql b/data/sql/base/db_world/game_event_model_equip.sql index 0fb0418db..6bbd85949 100644 --- a/data/sql/base/db_world/game_event_model_equip.sql +++ b/data/sql/base/db_world/game_event_model_equip.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `game_event_model_equip` ( `modelid` mediumint unsigned NOT NULL DEFAULT '0', `equipment_id` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event_model_equip: 0 rows DELETE FROM `game_event_model_equip`; diff --git a/data/sql/base/db_world/game_event_npc_vendor.sql b/data/sql/base/db_world/game_event_npc_vendor.sql index 0bbfd009e..1a10720b6 100644 --- a/data/sql/base/db_world/game_event_npc_vendor.sql +++ b/data/sql/base/db_world/game_event_npc_vendor.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `game_event_npc_vendor` ( `ExtendedCost` mediumint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`item`), KEY `slot` (`slot`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event_npc_vendor: 14 rows DELETE FROM `game_event_npc_vendor`; diff --git a/data/sql/base/db_world/game_event_npcflag.sql b/data/sql/base/db_world/game_event_npcflag.sql index 96c3ca3d7..0a6e69151 100644 --- a/data/sql/base/db_world/game_event_npcflag.sql +++ b/data/sql/base/db_world/game_event_npcflag.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `game_event_npcflag` ( `guid` mediumint unsigned NOT NULL DEFAULT '0', `npcflag` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`eventEntry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event_npcflag: 5 rows DELETE FROM `game_event_npcflag`; diff --git a/data/sql/base/db_world/game_event_pool.sql b/data/sql/base/db_world/game_event_pool.sql index eac86963c..85b52615b 100644 --- a/data/sql/base/db_world/game_event_pool.sql +++ b/data/sql/base/db_world/game_event_pool.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `game_event_pool` ( `eventEntry` tinyint NOT NULL COMMENT 'Entry of the game event. Put negative entry to remove during event.', `pool_entry` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Id of the pool', PRIMARY KEY (`pool_entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event_pool: 8 rows DELETE FROM `game_event_pool`; diff --git a/data/sql/base/db_world/game_event_prerequisite.sql b/data/sql/base/db_world/game_event_prerequisite.sql index f074a38d0..916081372 100644 --- a/data/sql/base/db_world/game_event_prerequisite.sql +++ b/data/sql/base/db_world/game_event_prerequisite.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `game_event_prerequisite` ( `eventEntry` tinyint unsigned NOT NULL COMMENT 'Entry of the game event', `prerequisite_event` mediumint unsigned NOT NULL, PRIMARY KEY (`eventEntry`,`prerequisite_event`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event_prerequisite: 0 rows DELETE FROM `game_event_prerequisite`; diff --git a/data/sql/base/db_world/game_event_quest_condition.sql b/data/sql/base/db_world/game_event_quest_condition.sql index d02d3ff15..b302f2799 100644 --- a/data/sql/base/db_world/game_event_quest_condition.sql +++ b/data/sql/base/db_world/game_event_quest_condition.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `game_event_quest_condition` ( `condition_id` mediumint unsigned NOT NULL DEFAULT '0', `num` float DEFAULT '0', PRIMARY KEY (`quest`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.game_event_quest_condition: 0 rows DELETE FROM `game_event_quest_condition`; diff --git a/data/sql/base/db_world/game_event_seasonal_questrelation.sql b/data/sql/base/db_world/game_event_seasonal_questrelation.sql index e6155c4aa..4d35d0099 100644 --- a/data/sql/base/db_world/game_event_seasonal_questrelation.sql +++ b/data/sql/base/db_world/game_event_seasonal_questrelation.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `game_event_seasonal_questrelation` ( `eventEntry` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Entry of the game event', PRIMARY KEY (`questId`,`eventEntry`), KEY `idx_quest` (`questId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Player System'; -- Dumping data for table acore_world.game_event_seasonal_questrelation: 690 rows DELETE FROM `game_event_seasonal_questrelation`; diff --git a/data/sql/base/db_world/game_graveyard.sql b/data/sql/base/db_world/game_graveyard.sql index 79e8279ae..30f797150 100644 --- a/data/sql/base/db_world/game_graveyard.sql +++ b/data/sql/base/db_world/game_graveyard.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `game_graveyard` ( `z` float NOT NULL DEFAULT '0', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`ID`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=COMPACT; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- Dumping data for table acore_world.game_graveyard: ~685 rows (approximately) DELETE FROM `game_graveyard`; diff --git a/data/sql/base/db_world/game_tele.sql b/data/sql/base/db_world/game_tele.sql index 74718e3b5..ba334d293 100644 --- a/data/sql/base/db_world/game_tele.sql +++ b/data/sql/base/db_world/game_tele.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `game_tele` ( `map` smallint unsigned NOT NULL DEFAULT '0', `name` varchar(100) NOT NULL DEFAULT '', PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=1492 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Tele Command'; +) ENGINE=MyISAM AUTO_INCREMENT=1492 DEFAULT CHARSET=utf8mb4 COMMENT='Tele Command'; -- Dumping data for table acore_world.game_tele: 1,491 rows DELETE FROM `game_tele`; diff --git a/data/sql/base/db_world/game_weather.sql b/data/sql/base/db_world/game_weather.sql index d3aa833dd..a7f23f06c 100644 --- a/data/sql/base/db_world/game_weather.sql +++ b/data/sql/base/db_world/game_weather.sql @@ -32,7 +32,7 @@ CREATE TABLE IF NOT EXISTS `game_weather` ( `winter_storm_chance` tinyint unsigned NOT NULL DEFAULT '25', `ScriptName` char(64) NOT NULL DEFAULT '', PRIMARY KEY (`zone`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Weather System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Weather System'; -- Dumping data for table acore_world.game_weather: 35 rows DELETE FROM `game_weather`; diff --git a/data/sql/base/db_world/gameobject.sql b/data/sql/base/db_world/gameobject.sql index 0d28d9247..9039fde69 100644 --- a/data/sql/base/db_world/gameobject.sql +++ b/data/sql/base/db_world/gameobject.sql @@ -38,7 +38,7 @@ CREATE TABLE IF NOT EXISTS `gameobject` ( `ScriptName` char(64) DEFAULT '', `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`guid`) -) ENGINE=MyISAM AUTO_INCREMENT=2135455 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Gameobject System'; +) ENGINE=MyISAM AUTO_INCREMENT=2135455 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Gameobject System'; -- Dumping data for table acore_world.gameobject: 85,801 rows DELETE FROM `gameobject`; diff --git a/data/sql/base/db_world/gameobject_addon.sql b/data/sql/base/db_world/gameobject_addon.sql index 189b22dd3..4feac01ec 100644 --- a/data/sql/base/db_world/gameobject_addon.sql +++ b/data/sql/base/db_world/gameobject_addon.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `gameobject_addon` ( `invisibilityType` tinyint unsigned NOT NULL DEFAULT '0', `invisibilityValue` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.gameobject_addon: 32 rows DELETE FROM `gameobject_addon`; diff --git a/data/sql/base/db_world/gameobject_loot_template.sql b/data/sql/base/db_world/gameobject_loot_template.sql index 3527f7c36..aa31e92e2 100644 --- a/data/sql/base/db_world/gameobject_loot_template.sql +++ b/data/sql/base/db_world/gameobject_loot_template.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `gameobject_loot_template` ( `MaxCount` tinyint unsigned NOT NULL DEFAULT '1', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`Entry`,`Item`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Loot System'; -- Dumping data for table acore_world.gameobject_loot_template: 17,994 rows DELETE FROM `gameobject_loot_template`; diff --git a/data/sql/base/db_world/gameobject_questender.sql b/data/sql/base/db_world/gameobject_questender.sql index 87886db83..e87962c0b 100644 --- a/data/sql/base/db_world/gameobject_questender.sql +++ b/data/sql/base/db_world/gameobject_questender.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gameobject_questender` ( `id` mediumint unsigned NOT NULL DEFAULT '0', `quest` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier', PRIMARY KEY (`id`,`quest`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.gameobject_questender: 457 rows DELETE FROM `gameobject_questender`; diff --git a/data/sql/base/db_world/gameobject_questitem.sql b/data/sql/base/db_world/gameobject_questitem.sql index 518d80c4d..7a73b125c 100644 --- a/data/sql/base/db_world/gameobject_questitem.sql +++ b/data/sql/base/db_world/gameobject_questitem.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `gameobject_questitem` ( `ItemId` int unsigned NOT NULL DEFAULT '0', `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`GameObjectEntry`,`Idx`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.gameobject_questitem: 862 rows DELETE FROM `gameobject_questitem`; diff --git a/data/sql/base/db_world/gameobject_queststarter.sql b/data/sql/base/db_world/gameobject_queststarter.sql index 7175e5aeb..9f4bf2b46 100644 --- a/data/sql/base/db_world/gameobject_queststarter.sql +++ b/data/sql/base/db_world/gameobject_queststarter.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gameobject_queststarter` ( `id` mediumint unsigned NOT NULL DEFAULT '0', `quest` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier', PRIMARY KEY (`id`,`quest`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.gameobject_queststarter: 455 rows DELETE FROM `gameobject_queststarter`; diff --git a/data/sql/base/db_world/gameobject_template.sql b/data/sql/base/db_world/gameobject_template.sql index 3e647c02e..de2ec3c1e 100644 --- a/data/sql/base/db_world/gameobject_template.sql +++ b/data/sql/base/db_world/gameobject_template.sql @@ -54,7 +54,7 @@ CREATE TABLE IF NOT EXISTS `gameobject_template` ( `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`entry`), KEY `idx_name` (`name`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Gameobject System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Gameobject System'; -- Dumping data for table acore_world.gameobject_template: 21,579 rows DELETE FROM `gameobject_template`; diff --git a/data/sql/base/db_world/gameobject_template_addon.sql b/data/sql/base/db_world/gameobject_template_addon.sql index 31c288a19..9e41e099a 100644 --- a/data/sql/base/db_world/gameobject_template_addon.sql +++ b/data/sql/base/db_world/gameobject_template_addon.sql @@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `gameobject_template_addon` ( `artkit2` int NOT NULL DEFAULT '0', `artkit3` int NOT NULL DEFAULT '0', PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.gameobject_template_addon: 21,493 rows DELETE FROM `gameobject_template_addon`; diff --git a/data/sql/base/db_world/gameobject_template_locale.sql b/data/sql/base/db_world/gameobject_template_locale.sql index 2e8eabf72..6d5c6db47 100644 --- a/data/sql/base/db_world/gameobject_template_locale.sql +++ b/data/sql/base/db_world/gameobject_template_locale.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `gameobject_template_locale` ( `castBarCaption` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`entry`,`locale`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.gameobject_template_locale: 159,831 rows DELETE FROM `gameobject_template_locale`; diff --git a/data/sql/base/db_world/gameobjectartkit_dbc.sql b/data/sql/base/db_world/gameobjectartkit_dbc.sql index af33d22a1..dc3a4d3e3 100644 --- a/data/sql/base/db_world/gameobjectartkit_dbc.sql +++ b/data/sql/base/db_world/gameobjectartkit_dbc.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `gameobjectartkit_dbc` ( `Attach_Model_3` int NOT NULL DEFAULT '0', `Attach_Model_4` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.gameobjectartkit_dbc: 0 rows DELETE FROM `gameobjectartkit_dbc`; diff --git a/data/sql/base/db_world/gameobjectdisplayinfo_dbc.sql b/data/sql/base/db_world/gameobjectdisplayinfo_dbc.sql index 949d81287..04c095b31 100644 --- a/data/sql/base/db_world/gameobjectdisplayinfo_dbc.sql +++ b/data/sql/base/db_world/gameobjectdisplayinfo_dbc.sql @@ -37,7 +37,7 @@ CREATE TABLE IF NOT EXISTS `gameobjectdisplayinfo_dbc` ( `GeoBoxMaxZ` float NOT NULL DEFAULT '0', `ObjectEffectPackageID` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.gameobjectdisplayinfo_dbc: 0 rows DELETE FROM `gameobjectdisplayinfo_dbc`; diff --git a/data/sql/base/db_world/gemproperties_dbc.sql b/data/sql/base/db_world/gemproperties_dbc.sql index 0af187f39..1fa2e1c1b 100644 --- a/data/sql/base/db_world/gemproperties_dbc.sql +++ b/data/sql/base/db_world/gemproperties_dbc.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `gemproperties_dbc` ( `Maxcount_Item` int NOT NULL DEFAULT '0', `Type` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.gemproperties_dbc: 0 rows DELETE FROM `gemproperties_dbc`; diff --git a/data/sql/base/db_world/glyphproperties_dbc.sql b/data/sql/base/db_world/glyphproperties_dbc.sql index 6dcc1bb57..5ac0327aa 100644 --- a/data/sql/base/db_world/glyphproperties_dbc.sql +++ b/data/sql/base/db_world/glyphproperties_dbc.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `glyphproperties_dbc` ( `GlyphSlotFlags` int NOT NULL DEFAULT '0', `SpellIconID` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.glyphproperties_dbc: 0 rows DELETE FROM `glyphproperties_dbc`; diff --git a/data/sql/base/db_world/glyphslot_dbc.sql b/data/sql/base/db_world/glyphslot_dbc.sql index 6fcaa9f72..e7eb42236 100644 --- a/data/sql/base/db_world/glyphslot_dbc.sql +++ b/data/sql/base/db_world/glyphslot_dbc.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `glyphslot_dbc` ( `Type` int NOT NULL DEFAULT '0', `Tooltip` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.glyphslot_dbc: 0 rows DELETE FROM `glyphslot_dbc`; diff --git a/data/sql/base/db_world/gossip_menu.sql b/data/sql/base/db_world/gossip_menu.sql index 3d9b52327..3ba877e60 100644 --- a/data/sql/base/db_world/gossip_menu.sql +++ b/data/sql/base/db_world/gossip_menu.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gossip_menu` ( `MenuID` smallint unsigned NOT NULL DEFAULT '0', `TextID` mediumint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`MenuID`,`TextID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.gossip_menu: 5,954 rows DELETE FROM `gossip_menu`; diff --git a/data/sql/base/db_world/gossip_menu_option.sql b/data/sql/base/db_world/gossip_menu_option.sql index d97654dbb..25e59d6c5 100644 --- a/data/sql/base/db_world/gossip_menu_option.sql +++ b/data/sql/base/db_world/gossip_menu_option.sql @@ -32,7 +32,7 @@ CREATE TABLE IF NOT EXISTS `gossip_menu_option` ( `BoxBroadcastTextID` mediumint NOT NULL DEFAULT '0', `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`MenuID`,`OptionID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.gossip_menu_option: 4,518 rows DELETE FROM `gossip_menu_option`; diff --git a/data/sql/base/db_world/gossip_menu_option_locale.sql b/data/sql/base/db_world/gossip_menu_option_locale.sql index 8fefc05a3..0c592a340 100644 --- a/data/sql/base/db_world/gossip_menu_option_locale.sql +++ b/data/sql/base/db_world/gossip_menu_option_locale.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `gossip_menu_option_locale` ( `OptionText` text, `BoxText` text, PRIMARY KEY (`MenuID`,`OptionID`,`Locale`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=COMPACT; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- Dumping data for table acore_world.gossip_menu_option_locale: ~32,971 rows (approximately) DELETE FROM `gossip_menu_option_locale`; diff --git a/data/sql/base/db_world/graveyard_zone.sql b/data/sql/base/db_world/graveyard_zone.sql index 58815494c..49131c860 100644 --- a/data/sql/base/db_world/graveyard_zone.sql +++ b/data/sql/base/db_world/graveyard_zone.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `graveyard_zone` ( `Faction` smallint unsigned NOT NULL DEFAULT '0', `Comment` text, PRIMARY KEY (`ID`,`GhostZone`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Trigger System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Trigger System'; -- Dumping data for table acore_world.graveyard_zone: 704 rows DELETE FROM `graveyard_zone`; diff --git a/data/sql/base/db_world/gtbarbershopcostbase_dbc.sql b/data/sql/base/db_world/gtbarbershopcostbase_dbc.sql index 190d17f19..095d81bc0 100644 --- a/data/sql/base/db_world/gtbarbershopcostbase_dbc.sql +++ b/data/sql/base/db_world/gtbarbershopcostbase_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gtbarbershopcostbase_dbc` ( `ID` int NOT NULL DEFAULT '0', `Data` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.gtbarbershopcostbase_dbc: 100 rows DELETE FROM `gtbarbershopcostbase_dbc`; diff --git a/data/sql/base/db_world/gtchancetomeleecrit_dbc.sql b/data/sql/base/db_world/gtchancetomeleecrit_dbc.sql index 10fd6b938..d1b6082a2 100644 --- a/data/sql/base/db_world/gtchancetomeleecrit_dbc.sql +++ b/data/sql/base/db_world/gtchancetomeleecrit_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gtchancetomeleecrit_dbc` ( `ID` int NOT NULL DEFAULT '0', `Data` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.gtchancetomeleecrit_dbc: 1,100 rows DELETE FROM `gtchancetomeleecrit_dbc`; diff --git a/data/sql/base/db_world/gtchancetomeleecritbase_dbc.sql b/data/sql/base/db_world/gtchancetomeleecritbase_dbc.sql index 0730b1dce..abe408c93 100644 --- a/data/sql/base/db_world/gtchancetomeleecritbase_dbc.sql +++ b/data/sql/base/db_world/gtchancetomeleecritbase_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gtchancetomeleecritbase_dbc` ( `ID` int NOT NULL DEFAULT '0', `Data` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.gtchancetomeleecritbase_dbc: 11 rows DELETE FROM `gtchancetomeleecritbase_dbc`; diff --git a/data/sql/base/db_world/gtchancetospellcrit_dbc.sql b/data/sql/base/db_world/gtchancetospellcrit_dbc.sql index 0c264a34a..d0b1296d2 100644 --- a/data/sql/base/db_world/gtchancetospellcrit_dbc.sql +++ b/data/sql/base/db_world/gtchancetospellcrit_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gtchancetospellcrit_dbc` ( `ID` int NOT NULL DEFAULT '0', `Data` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.gtchancetospellcrit_dbc: 1,100 rows DELETE FROM `gtchancetospellcrit_dbc`; diff --git a/data/sql/base/db_world/gtchancetospellcritbase_dbc.sql b/data/sql/base/db_world/gtchancetospellcritbase_dbc.sql index 4408d9f3e..fe7f80230 100644 --- a/data/sql/base/db_world/gtchancetospellcritbase_dbc.sql +++ b/data/sql/base/db_world/gtchancetospellcritbase_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gtchancetospellcritbase_dbc` ( `ID` int NOT NULL DEFAULT '0', `Data` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.gtchancetospellcritbase_dbc: 11 rows DELETE FROM `gtchancetospellcritbase_dbc`; diff --git a/data/sql/base/db_world/gtcombatratings_dbc.sql b/data/sql/base/db_world/gtcombatratings_dbc.sql index 15cb51dcd..272369035 100644 --- a/data/sql/base/db_world/gtcombatratings_dbc.sql +++ b/data/sql/base/db_world/gtcombatratings_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gtcombatratings_dbc` ( `ID` int NOT NULL DEFAULT '0', `Data` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.gtcombatratings_dbc: 3,200 rows DELETE FROM `gtcombatratings_dbc`; diff --git a/data/sql/base/db_world/gtnpcmanacostscaler_dbc.sql b/data/sql/base/db_world/gtnpcmanacostscaler_dbc.sql index 4edac238c..94f3bfc47 100644 --- a/data/sql/base/db_world/gtnpcmanacostscaler_dbc.sql +++ b/data/sql/base/db_world/gtnpcmanacostscaler_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gtnpcmanacostscaler_dbc` ( `ID` int NOT NULL DEFAULT '0', `Data` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.gtnpcmanacostscaler_dbc: 100 rows DELETE FROM `gtnpcmanacostscaler_dbc`; diff --git a/data/sql/base/db_world/gtoctclasscombatratingscalar_dbc.sql b/data/sql/base/db_world/gtoctclasscombatratingscalar_dbc.sql index b03b5554d..2e8e4e173 100644 --- a/data/sql/base/db_world/gtoctclasscombatratingscalar_dbc.sql +++ b/data/sql/base/db_world/gtoctclasscombatratingscalar_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gtoctclasscombatratingscalar_dbc` ( `ID` int NOT NULL DEFAULT '0', `Data` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.gtoctclasscombatratingscalar_dbc: 352 rows DELETE FROM `gtoctclasscombatratingscalar_dbc`; diff --git a/data/sql/base/db_world/gtoctregenhp_dbc.sql b/data/sql/base/db_world/gtoctregenhp_dbc.sql index cfd2911e6..302bf9474 100644 --- a/data/sql/base/db_world/gtoctregenhp_dbc.sql +++ b/data/sql/base/db_world/gtoctregenhp_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gtoctregenhp_dbc` ( `ID` int NOT NULL DEFAULT '0', `Data` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.gtoctregenhp_dbc: 1,100 rows DELETE FROM `gtoctregenhp_dbc`; diff --git a/data/sql/base/db_world/gtregenhpperspt_dbc.sql b/data/sql/base/db_world/gtregenhpperspt_dbc.sql index 3599650d7..cd79b8d6e 100644 --- a/data/sql/base/db_world/gtregenhpperspt_dbc.sql +++ b/data/sql/base/db_world/gtregenhpperspt_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gtregenhpperspt_dbc` ( `ID` int NOT NULL DEFAULT '0', `Data` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.gtregenhpperspt_dbc: 1,100 rows DELETE FROM `gtregenhpperspt_dbc`; diff --git a/data/sql/base/db_world/gtregenmpperspt_dbc.sql b/data/sql/base/db_world/gtregenmpperspt_dbc.sql index 998069491..47341de41 100644 --- a/data/sql/base/db_world/gtregenmpperspt_dbc.sql +++ b/data/sql/base/db_world/gtregenmpperspt_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `gtregenmpperspt_dbc` ( `ID` int NOT NULL DEFAULT '0', `Data` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.gtregenmpperspt_dbc: 1,100 rows DELETE FROM `gtregenmpperspt_dbc`; diff --git a/data/sql/base/db_world/holidays_dbc.sql b/data/sql/base/db_world/holidays_dbc.sql index 706911e5d..28146b6e2 100644 --- a/data/sql/base/db_world/holidays_dbc.sql +++ b/data/sql/base/db_world/holidays_dbc.sql @@ -73,7 +73,7 @@ CREATE TABLE IF NOT EXISTS `holidays_dbc` ( `CalendarFilterType` int NOT NULL DEFAULT '0', `Flags` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.holidays_dbc: 0 rows DELETE FROM `holidays_dbc`; diff --git a/data/sql/base/db_world/instance_encounters.sql b/data/sql/base/db_world/instance_encounters.sql index b0e1fe7b2..425c87874 100644 --- a/data/sql/base/db_world/instance_encounters.sql +++ b/data/sql/base/db_world/instance_encounters.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `instance_encounters` ( `lastEncounterDungeon` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'If not 0, LfgDungeon.dbc entry for the instance it is last encounter in', `comment` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.instance_encounters: 612 rows DELETE FROM `instance_encounters`; diff --git a/data/sql/base/db_world/instance_template.sql b/data/sql/base/db_world/instance_template.sql index a373b9c8e..c45ccfaef 100644 --- a/data/sql/base/db_world/instance_template.sql +++ b/data/sql/base/db_world/instance_template.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `instance_template` ( `script` varchar(128) NOT NULL DEFAULT '', `allowMount` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`map`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.instance_template: 85 rows DELETE FROM `instance_template`; diff --git a/data/sql/base/db_world/item_enchantment_template.sql b/data/sql/base/db_world/item_enchantment_template.sql index c69200831..8bb582386 100644 --- a/data/sql/base/db_world/item_enchantment_template.sql +++ b/data/sql/base/db_world/item_enchantment_template.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `item_enchantment_template` ( `chance` float NOT NULL DEFAULT '0', PRIMARY KEY (`entry`,`ench`), CONSTRAINT `item_enchantment_template_chk_1` CHECK ((`chance` >= 0)) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Item Random Enchantment System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Item Random Enchantment System'; -- Dumping data for table acore_world.item_enchantment_template: 28,606 rows DELETE FROM `item_enchantment_template`; diff --git a/data/sql/base/db_world/item_loot_template.sql b/data/sql/base/db_world/item_loot_template.sql index f60287e9e..167ca949e 100644 --- a/data/sql/base/db_world/item_loot_template.sql +++ b/data/sql/base/db_world/item_loot_template.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `item_loot_template` ( `MaxCount` tinyint unsigned NOT NULL DEFAULT '1', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`Entry`,`Item`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Loot System'; -- Dumping data for table acore_world.item_loot_template: 5,001 rows DELETE FROM `item_loot_template`; diff --git a/data/sql/base/db_world/item_set_names.sql b/data/sql/base/db_world/item_set_names.sql index fa75aea8f..1eff0e184 100644 --- a/data/sql/base/db_world/item_set_names.sql +++ b/data/sql/base/db_world/item_set_names.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `item_set_names` ( `InventoryType` tinyint unsigned NOT NULL DEFAULT '0', `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.item_set_names: 2,481 rows DELETE FROM `item_set_names`; diff --git a/data/sql/base/db_world/item_set_names_locale.sql b/data/sql/base/db_world/item_set_names_locale.sql index ef79be807..4a0637534 100644 --- a/data/sql/base/db_world/item_set_names_locale.sql +++ b/data/sql/base/db_world/item_set_names_locale.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `item_set_names_locale` ( `Name` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`,`locale`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- Dumping data for table acore_world.item_set_names_locale: 14,850 rows DELETE FROM `item_set_names_locale`; diff --git a/data/sql/base/db_world/item_template.sql b/data/sql/base/db_world/item_template.sql index 969ebf6e5..659066fcb 100644 --- a/data/sql/base/db_world/item_template.sql +++ b/data/sql/base/db_world/item_template.sql @@ -159,7 +159,7 @@ CREATE TABLE IF NOT EXISTS `item_template` ( PRIMARY KEY (`entry`), KEY `idx_name` (`name`(250)), KEY `items_index` (`class`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Item System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Item System'; -- Dumping data for table acore_world.item_template: 46,096 rows DELETE FROM `item_template`; diff --git a/data/sql/base/db_world/item_template_locale.sql b/data/sql/base/db_world/item_template_locale.sql index 57465f549..b491a7c49 100644 --- a/data/sql/base/db_world/item_template_locale.sql +++ b/data/sql/base/db_world/item_template_locale.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `item_template_locale` ( `Description` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`,`locale`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=COMPACT; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- Dumping data for table acore_world.item_template_locale: ~296,225 rows (approximately) DELETE FROM `item_template_locale`; diff --git a/data/sql/base/db_world/itembagfamily_dbc.sql b/data/sql/base/db_world/itembagfamily_dbc.sql index 9f87d75a2..e46c85ed0 100644 --- a/data/sql/base/db_world/itembagfamily_dbc.sql +++ b/data/sql/base/db_world/itembagfamily_dbc.sql @@ -36,7 +36,7 @@ CREATE TABLE IF NOT EXISTS `itembagfamily_dbc` ( `Name_Lang_Unk` varchar(100) DEFAULT NULL, `Name_Lang_Mask` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.itembagfamily_dbc: 0 rows DELETE FROM `itembagfamily_dbc`; diff --git a/data/sql/base/db_world/itemdisplayinfo_dbc.sql b/data/sql/base/db_world/itemdisplayinfo_dbc.sql index dba30d2e5..dbef52426 100644 --- a/data/sql/base/db_world/itemdisplayinfo_dbc.sql +++ b/data/sql/base/db_world/itemdisplayinfo_dbc.sql @@ -43,7 +43,7 @@ CREATE TABLE IF NOT EXISTS `itemdisplayinfo_dbc` ( `ItemVisual` int NOT NULL DEFAULT '0', `ParticleColorID` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.itemdisplayinfo_dbc: 0 rows DELETE FROM `itemdisplayinfo_dbc`; diff --git a/data/sql/base/db_world/itemextendedcost_dbc.sql b/data/sql/base/db_world/itemextendedcost_dbc.sql index 134504235..b1cb4522e 100644 --- a/data/sql/base/db_world/itemextendedcost_dbc.sql +++ b/data/sql/base/db_world/itemextendedcost_dbc.sql @@ -34,7 +34,7 @@ CREATE TABLE IF NOT EXISTS `itemextendedcost_dbc` ( `RequiredArenaRating` int NOT NULL DEFAULT '0', `ItemPurchaseGroup` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.itemextendedcost_dbc: 0 rows DELETE FROM `itemextendedcost_dbc`; diff --git a/data/sql/base/db_world/itemlimitcategory_dbc.sql b/data/sql/base/db_world/itemlimitcategory_dbc.sql index cca26448e..8a01e1fe8 100644 --- a/data/sql/base/db_world/itemlimitcategory_dbc.sql +++ b/data/sql/base/db_world/itemlimitcategory_dbc.sql @@ -38,7 +38,7 @@ CREATE TABLE IF NOT EXISTS `itemlimitcategory_dbc` ( `Quantity` int NOT NULL DEFAULT '0', `Flags` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.itemlimitcategory_dbc: 0 rows DELETE FROM `itemlimitcategory_dbc`; diff --git a/data/sql/base/db_world/itemrandomproperties_dbc.sql b/data/sql/base/db_world/itemrandomproperties_dbc.sql index 6d805f695..431a700d7 100644 --- a/data/sql/base/db_world/itemrandomproperties_dbc.sql +++ b/data/sql/base/db_world/itemrandomproperties_dbc.sql @@ -42,7 +42,7 @@ CREATE TABLE IF NOT EXISTS `itemrandomproperties_dbc` ( `Name_Lang_Unk` varchar(100) DEFAULT NULL, `Name_Lang_Mask` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.itemrandomproperties_dbc: 0 rows DELETE FROM `itemrandomproperties_dbc`; diff --git a/data/sql/base/db_world/itemrandomsuffix_dbc.sql b/data/sql/base/db_world/itemrandomsuffix_dbc.sql index fb075e55a..2d243d798 100644 --- a/data/sql/base/db_world/itemrandomsuffix_dbc.sql +++ b/data/sql/base/db_world/itemrandomsuffix_dbc.sql @@ -47,7 +47,7 @@ CREATE TABLE IF NOT EXISTS `itemrandomsuffix_dbc` ( `AllocationPct_4` int NOT NULL DEFAULT '0', `AllocationPct_5` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.itemrandomsuffix_dbc: 0 rows DELETE FROM `itemrandomsuffix_dbc`; diff --git a/data/sql/base/db_world/itemset_dbc.sql b/data/sql/base/db_world/itemset_dbc.sql index 3b3d71c0e..6aecf6c54 100644 --- a/data/sql/base/db_world/itemset_dbc.sql +++ b/data/sql/base/db_world/itemset_dbc.sql @@ -71,7 +71,7 @@ CREATE TABLE IF NOT EXISTS `itemset_dbc` ( `RequiredSkill` int NOT NULL DEFAULT '0', `RequiredSkillRank` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.itemset_dbc: 0 rows DELETE FROM `itemset_dbc`; diff --git a/data/sql/base/db_world/lfg_dungeon_rewards.sql b/data/sql/base/db_world/lfg_dungeon_rewards.sql index 9fc27decc..909ed56bd 100644 --- a/data/sql/base/db_world/lfg_dungeon_rewards.sql +++ b/data/sql/base/db_world/lfg_dungeon_rewards.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `lfg_dungeon_rewards` ( `firstQuestId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest id with rewards for first dungeon this day', `otherQuestId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest id with rewards for Nth dungeon this day', PRIMARY KEY (`dungeonId`,`maxLevel`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.lfg_dungeon_rewards: 15 rows DELETE FROM `lfg_dungeon_rewards`; diff --git a/data/sql/base/db_world/lfg_dungeon_template.sql b/data/sql/base/db_world/lfg_dungeon_template.sql index 84ed12598..8a3673084 100644 --- a/data/sql/base/db_world/lfg_dungeon_template.sql +++ b/data/sql/base/db_world/lfg_dungeon_template.sql @@ -18,14 +18,14 @@ DROP TABLE IF EXISTS `lfg_dungeon_template`; CREATE TABLE IF NOT EXISTS `lfg_dungeon_template` ( `dungeonId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Unique id from LFGDungeons.dbc', - `name` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, + `name` varchar(255) CHARACTER SET latin1 DEFAULT NULL, `position_x` float NOT NULL DEFAULT '0', `position_y` float NOT NULL DEFAULT '0', `position_z` float NOT NULL DEFAULT '0', `orientation` float NOT NULL DEFAULT '0', `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`dungeonId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.lfg_dungeon_template: 22 rows DELETE FROM `lfg_dungeon_template`; diff --git a/data/sql/base/db_world/lfgdungeons_dbc.sql b/data/sql/base/db_world/lfgdungeons_dbc.sql index 07d8e0a73..e0674dfb6 100644 --- a/data/sql/base/db_world/lfgdungeons_dbc.sql +++ b/data/sql/base/db_world/lfgdungeons_dbc.sql @@ -67,7 +67,7 @@ CREATE TABLE IF NOT EXISTS `lfgdungeons_dbc` ( `Description_Lang_Unk` varchar(100) DEFAULT NULL, `Description_Lang_Mask` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.lfgdungeons_dbc: 0 rows DELETE FROM `lfgdungeons_dbc`; diff --git a/data/sql/base/db_world/light_dbc.sql b/data/sql/base/db_world/light_dbc.sql index 849145d07..b2ad5377a 100644 --- a/data/sql/base/db_world/light_dbc.sql +++ b/data/sql/base/db_world/light_dbc.sql @@ -33,7 +33,7 @@ CREATE TABLE IF NOT EXISTS `light_dbc` ( `LightParamsID_7` int NOT NULL DEFAULT '0', `LightParamsID_8` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.light_dbc: 0 rows DELETE FROM `light_dbc`; diff --git a/data/sql/base/db_world/linked_respawn.sql b/data/sql/base/db_world/linked_respawn.sql index 5935d10b5..8ab01272f 100644 --- a/data/sql/base/db_world/linked_respawn.sql +++ b/data/sql/base/db_world/linked_respawn.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `linked_respawn` ( `linkedGuid` int unsigned NOT NULL COMMENT 'master creature', `linkType` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`linkType`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='Creature Respawn Link System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Creature Respawn Link System'; -- Dumping data for table acore_world.linked_respawn: 5,749 rows DELETE FROM `linked_respawn`; diff --git a/data/sql/base/db_world/liquidtype_dbc.sql b/data/sql/base/db_world/liquidtype_dbc.sql index 0d944a8fe..d07cd94fc 100644 --- a/data/sql/base/db_world/liquidtype_dbc.sql +++ b/data/sql/base/db_world/liquidtype_dbc.sql @@ -63,7 +63,7 @@ CREATE TABLE IF NOT EXISTS `liquidtype_dbc` ( `Int_3` int NOT NULL DEFAULT '0', `Int_4` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.liquidtype_dbc: 0 rows DELETE FROM `liquidtype_dbc`; diff --git a/data/sql/base/db_world/lock_dbc.sql b/data/sql/base/db_world/lock_dbc.sql index 7ef70288f..487554774 100644 --- a/data/sql/base/db_world/lock_dbc.sql +++ b/data/sql/base/db_world/lock_dbc.sql @@ -51,7 +51,7 @@ CREATE TABLE IF NOT EXISTS `lock_dbc` ( `Action_7` int NOT NULL DEFAULT '0', `Action_8` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.lock_dbc: 0 rows DELETE FROM `lock_dbc`; diff --git a/data/sql/base/db_world/mail_level_reward.sql b/data/sql/base/db_world/mail_level_reward.sql index 61ee503a5..516da46d2 100644 --- a/data/sql/base/db_world/mail_level_reward.sql +++ b/data/sql/base/db_world/mail_level_reward.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `mail_level_reward` ( `mailTemplateId` mediumint unsigned NOT NULL DEFAULT '0', `senderEntry` mediumint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`level`,`raceMask`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Mail System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Mail System'; -- Dumping data for table acore_world.mail_level_reward: 24 rows DELETE FROM `mail_level_reward`; diff --git a/data/sql/base/db_world/mail_loot_template.sql b/data/sql/base/db_world/mail_loot_template.sql index f54ab98f4..f4d5847e9 100644 --- a/data/sql/base/db_world/mail_loot_template.sql +++ b/data/sql/base/db_world/mail_loot_template.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `mail_loot_template` ( `MaxCount` tinyint unsigned NOT NULL DEFAULT '1', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`Entry`,`Item`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Loot System'; -- Dumping data for table acore_world.mail_loot_template: 105 rows DELETE FROM `mail_loot_template`; diff --git a/data/sql/base/db_world/mailtemplate_dbc.sql b/data/sql/base/db_world/mailtemplate_dbc.sql index 7fec6a2b3..114a50c07 100644 --- a/data/sql/base/db_world/mailtemplate_dbc.sql +++ b/data/sql/base/db_world/mailtemplate_dbc.sql @@ -53,7 +53,7 @@ CREATE TABLE IF NOT EXISTS `mailtemplate_dbc` ( `Body_Lang_Unk` varchar(100) DEFAULT NULL, `Body_Lang_Mask` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.mailtemplate_dbc: 0 rows DELETE FROM `mailtemplate_dbc`; diff --git a/data/sql/base/db_world/map_dbc.sql b/data/sql/base/db_world/map_dbc.sql index 83de6c377..dff430949 100644 --- a/data/sql/base/db_world/map_dbc.sql +++ b/data/sql/base/db_world/map_dbc.sql @@ -84,7 +84,7 @@ CREATE TABLE IF NOT EXISTS `map_dbc` ( `RaidOffset` int NOT NULL DEFAULT '0', `MaxPlayers` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.map_dbc: 0 rows DELETE FROM `map_dbc`; diff --git a/data/sql/base/db_world/mapdifficulty_dbc.sql b/data/sql/base/db_world/mapdifficulty_dbc.sql index ef1dd3e25..390d2e5da 100644 --- a/data/sql/base/db_world/mapdifficulty_dbc.sql +++ b/data/sql/base/db_world/mapdifficulty_dbc.sql @@ -41,7 +41,7 @@ CREATE TABLE IF NOT EXISTS `mapdifficulty_dbc` ( `MaxPlayers` int NOT NULL DEFAULT '0', `Difficultystring` varchar(100) DEFAULT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.mapdifficulty_dbc: 0 rows DELETE FROM `mapdifficulty_dbc`; diff --git a/data/sql/base/db_world/milling_loot_template.sql b/data/sql/base/db_world/milling_loot_template.sql index 69abd1e4c..60abae490 100644 --- a/data/sql/base/db_world/milling_loot_template.sql +++ b/data/sql/base/db_world/milling_loot_template.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `milling_loot_template` ( `MaxCount` tinyint unsigned NOT NULL DEFAULT '1', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`Entry`,`Item`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Loot System'; -- Dumping data for table acore_world.milling_loot_template: 45 rows DELETE FROM `milling_loot_template`; diff --git a/data/sql/base/db_world/movie_dbc.sql b/data/sql/base/db_world/movie_dbc.sql index f392f083e..3d4c0b5b0 100644 --- a/data/sql/base/db_world/movie_dbc.sql +++ b/data/sql/base/db_world/movie_dbc.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `movie_dbc` ( `Filename` varchar(100) DEFAULT NULL, `Volume` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.movie_dbc: 0 rows DELETE FROM `movie_dbc`; diff --git a/data/sql/base/db_world/npc_spellclick_spells.sql b/data/sql/base/db_world/npc_spellclick_spells.sql index 5a688c2da..027c7a8d1 100644 --- a/data/sql/base/db_world/npc_spellclick_spells.sql +++ b/data/sql/base/db_world/npc_spellclick_spells.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `npc_spellclick_spells` ( `cast_flags` tinyint unsigned NOT NULL COMMENT 'first bit defines caster: 1=player, 0=creature; second bit defines target, same mapping as caster bit', `user_type` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'relation with summoner: 0-no 1-friendly 2-raid 3-party player can click', PRIMARY KEY (`npc_entry`,`spell_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.npc_spellclick_spells: 330 rows DELETE FROM `npc_spellclick_spells`; diff --git a/data/sql/base/db_world/npc_text.sql b/data/sql/base/db_world/npc_text.sql index eb0f7e5f8..2dcd4c0f4 100644 --- a/data/sql/base/db_world/npc_text.sql +++ b/data/sql/base/db_world/npc_text.sql @@ -108,7 +108,7 @@ CREATE TABLE IF NOT EXISTS `npc_text` ( `em7_5` smallint unsigned NOT NULL DEFAULT '0', `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.npc_text: 8,348 rows DELETE FROM `npc_text`; diff --git a/data/sql/base/db_world/npc_text_locale.sql b/data/sql/base/db_world/npc_text_locale.sql index 84fa5f5b5..0bea5b2e2 100644 --- a/data/sql/base/db_world/npc_text_locale.sql +++ b/data/sql/base/db_world/npc_text_locale.sql @@ -36,7 +36,7 @@ CREATE TABLE IF NOT EXISTS `npc_text_locale` ( `Text7_0` longtext, `Text7_1` longtext, PRIMARY KEY (`ID`,`Locale`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- Dumping data for table acore_world.npc_text_locale: ~21,454 rows (approximately) DELETE FROM `npc_text_locale`; diff --git a/data/sql/base/db_world/npc_trainer.sql b/data/sql/base/db_world/npc_trainer.sql index 92e2bd5fc..7957eda53 100644 --- a/data/sql/base/db_world/npc_trainer.sql +++ b/data/sql/base/db_world/npc_trainer.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `npc_trainer` ( `ReqLevel` tinyint unsigned NOT NULL DEFAULT '0', `ReqSpell` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`,`SpellID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.npc_trainer: 4,971 rows DELETE FROM `npc_trainer`; diff --git a/data/sql/base/db_world/npc_vendor.sql b/data/sql/base/db_world/npc_vendor.sql index c4f98e487..03f73e9a1 100644 --- a/data/sql/base/db_world/npc_vendor.sql +++ b/data/sql/base/db_world/npc_vendor.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `npc_vendor` ( `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`entry`,`item`,`ExtendedCost`), KEY `slot` (`slot`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Npc System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Npc System'; -- Dumping data for table acore_world.npc_vendor: 37,603 rows DELETE FROM `npc_vendor`; diff --git a/data/sql/base/db_world/outdoorpvp_template.sql b/data/sql/base/db_world/outdoorpvp_template.sql index ff63e9b55..44e814a9e 100644 --- a/data/sql/base/db_world/outdoorpvp_template.sql +++ b/data/sql/base/db_world/outdoorpvp_template.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `outdoorpvp_template` ( `ScriptName` char(64) NOT NULL DEFAULT '', `comment` text, PRIMARY KEY (`TypeId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='OutdoorPvP Templates'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='OutdoorPvP Templates'; -- Dumping data for table acore_world.outdoorpvp_template: 7 rows DELETE FROM `outdoorpvp_template`; diff --git a/data/sql/base/db_world/overridespelldata_dbc.sql b/data/sql/base/db_world/overridespelldata_dbc.sql index 35876603d..c781e704b 100644 --- a/data/sql/base/db_world/overridespelldata_dbc.sql +++ b/data/sql/base/db_world/overridespelldata_dbc.sql @@ -30,7 +30,7 @@ CREATE TABLE IF NOT EXISTS `overridespelldata_dbc` ( `Spells_10` int NOT NULL DEFAULT '0', `Flags` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.overridespelldata_dbc: 0 rows DELETE FROM `overridespelldata_dbc`; diff --git a/data/sql/base/db_world/page_text.sql b/data/sql/base/db_world/page_text.sql index cd5c60dab..dd8c81fd4 100644 --- a/data/sql/base/db_world/page_text.sql +++ b/data/sql/base/db_world/page_text.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `page_text` ( `NextPageID` mediumint unsigned NOT NULL DEFAULT '0', `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Item System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Item System'; -- Dumping data for table acore_world.page_text: 1,946 rows DELETE FROM `page_text`; diff --git a/data/sql/base/db_world/page_text_locale.sql b/data/sql/base/db_world/page_text_locale.sql index 51d0f3a95..d054ae932 100644 --- a/data/sql/base/db_world/page_text_locale.sql +++ b/data/sql/base/db_world/page_text_locale.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `page_text_locale` ( `Text` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`,`locale`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=COMPACT; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- Dumping data for table acore_world.page_text_locale: ~9,945 rows (approximately) DELETE FROM `page_text_locale`; diff --git a/data/sql/base/db_world/pet_levelstats.sql b/data/sql/base/db_world/pet_levelstats.sql index d68f80d14..a309c38b3 100644 --- a/data/sql/base/db_world/pet_levelstats.sql +++ b/data/sql/base/db_world/pet_levelstats.sql @@ -30,7 +30,7 @@ CREATE TABLE IF NOT EXISTS `pet_levelstats` ( `min_dmg` int unsigned NOT NULL DEFAULT '0', `max_dmg` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`creature_entry`,`level`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci PACK_KEYS=0 COMMENT='Stores pet levels stats.'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 PACK_KEYS=0 COMMENT='Stores pet levels stats.'; -- Dumping data for table acore_world.pet_levelstats: 2,720 rows DELETE FROM `pet_levelstats`; diff --git a/data/sql/base/db_world/pet_name_generation.sql b/data/sql/base/db_world/pet_name_generation.sql index 26d3b0dfc..af335b20a 100644 --- a/data/sql/base/db_world/pet_name_generation.sql +++ b/data/sql/base/db_world/pet_name_generation.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `pet_name_generation` ( `entry` mediumint unsigned NOT NULL DEFAULT '0', `half` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=314 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM AUTO_INCREMENT=314 DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.pet_name_generation: 313 rows DELETE FROM `pet_name_generation`; diff --git a/data/sql/base/db_world/pickpocketing_loot_template.sql b/data/sql/base/db_world/pickpocketing_loot_template.sql index 36e4b775d..1f5f54abc 100644 --- a/data/sql/base/db_world/pickpocketing_loot_template.sql +++ b/data/sql/base/db_world/pickpocketing_loot_template.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `pickpocketing_loot_template` ( `MaxCount` tinyint unsigned NOT NULL DEFAULT '1', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`Entry`,`Item`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Loot System'; -- Dumping data for table acore_world.pickpocketing_loot_template: 10,996 rows DELETE FROM `pickpocketing_loot_template`; diff --git a/data/sql/base/db_world/player_class_stats.sql b/data/sql/base/db_world/player_class_stats.sql index 92f41286c..8f8a9edd7 100644 --- a/data/sql/base/db_world/player_class_stats.sql +++ b/data/sql/base/db_world/player_class_stats.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `player_class_stats` ( `Intellect` int unsigned NOT NULL DEFAULT '0', `Spirit` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`Class`,`Level`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci PACK_KEYS=0 COMMENT='Stores levels stats.'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 PACK_KEYS=0 COMMENT='Stores levels stats.'; -- Dumping data for table acore_world.player_class_stats: 746 rows DELETE FROM `player_class_stats`; diff --git a/data/sql/base/db_world/player_classlevelstats.sql b/data/sql/base/db_world/player_classlevelstats.sql index 06fb9b4ce..8e11cd0a0 100644 --- a/data/sql/base/db_world/player_classlevelstats.sql +++ b/data/sql/base/db_world/player_classlevelstats.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `player_classlevelstats` ( `basehp` int unsigned NOT NULL DEFAULT '1', `basemana` int unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`class`,`level`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci PACK_KEYS=0 COMMENT='Stores levels stats.'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 PACK_KEYS=0 COMMENT='Stores levels stats.'; -- Dumping data for table acore_world.player_classlevelstats: 746 rows DELETE FROM `player_classlevelstats`; diff --git a/data/sql/base/db_world/player_factionchange_achievement.sql b/data/sql/base/db_world/player_factionchange_achievement.sql index 4497f806a..072b0f132 100644 --- a/data/sql/base/db_world/player_factionchange_achievement.sql +++ b/data/sql/base/db_world/player_factionchange_achievement.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `player_factionchange_achievement` ( `alliance_id` int unsigned NOT NULL, `horde_id` int unsigned NOT NULL, PRIMARY KEY (`alliance_id`,`horde_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.player_factionchange_achievement: 124 rows DELETE FROM `player_factionchange_achievement`; diff --git a/data/sql/base/db_world/player_factionchange_items.sql b/data/sql/base/db_world/player_factionchange_items.sql index 95949150f..62b498685 100644 --- a/data/sql/base/db_world/player_factionchange_items.sql +++ b/data/sql/base/db_world/player_factionchange_items.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `player_factionchange_items` ( `horde_id` int unsigned NOT NULL, `horde_comment` text NOT NULL, PRIMARY KEY (`alliance_id`,`horde_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.player_factionchange_items: 1,395 rows DELETE FROM `player_factionchange_items`; diff --git a/data/sql/base/db_world/player_factionchange_quests.sql b/data/sql/base/db_world/player_factionchange_quests.sql index c457add2a..c6e538870 100644 --- a/data/sql/base/db_world/player_factionchange_quests.sql +++ b/data/sql/base/db_world/player_factionchange_quests.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `player_factionchange_quests` ( PRIMARY KEY (`alliance_id`,`horde_id`), UNIQUE KEY `alliance_uniq` (`alliance_id`), UNIQUE KEY `horde_uniq` (`horde_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.player_factionchange_quests: 293 rows DELETE FROM `player_factionchange_quests`; diff --git a/data/sql/base/db_world/player_factionchange_reputations.sql b/data/sql/base/db_world/player_factionchange_reputations.sql index d7fb6f76f..5643dd07d 100644 --- a/data/sql/base/db_world/player_factionchange_reputations.sql +++ b/data/sql/base/db_world/player_factionchange_reputations.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `player_factionchange_reputations` ( `alliance_id` int unsigned NOT NULL, `horde_id` int unsigned NOT NULL, PRIMARY KEY (`alliance_id`,`horde_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.player_factionchange_reputations: 15 rows DELETE FROM `player_factionchange_reputations`; diff --git a/data/sql/base/db_world/player_factionchange_spells.sql b/data/sql/base/db_world/player_factionchange_spells.sql index 0a446f4d6..9a7531bf0 100644 --- a/data/sql/base/db_world/player_factionchange_spells.sql +++ b/data/sql/base/db_world/player_factionchange_spells.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `player_factionchange_spells` ( `horde_id` int unsigned NOT NULL, `horde_comment` text NOT NULL, PRIMARY KEY (`alliance_id`,`horde_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.player_factionchange_spells: 113 rows DELETE FROM `player_factionchange_spells`; diff --git a/data/sql/base/db_world/player_factionchange_titles.sql b/data/sql/base/db_world/player_factionchange_titles.sql index 304eef91b..e3491fbc7 100644 --- a/data/sql/base/db_world/player_factionchange_titles.sql +++ b/data/sql/base/db_world/player_factionchange_titles.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `player_factionchange_titles` ( `horde_id` int NOT NULL, `horde_comment` text, PRIMARY KEY (`alliance_id`,`horde_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.player_factionchange_titles: 22 rows DELETE FROM `player_factionchange_titles`; diff --git a/data/sql/base/db_world/player_loot_template.sql b/data/sql/base/db_world/player_loot_template.sql index 5eeabca7d..d7efabd66 100644 --- a/data/sql/base/db_world/player_loot_template.sql +++ b/data/sql/base/db_world/player_loot_template.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `player_loot_template` ( `MaxCount` tinyint unsigned NOT NULL DEFAULT '1', `Comment` text, PRIMARY KEY (`Entry`,`Item`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Loot System'; -- Dumping data for table acore_world.player_loot_template: 20 rows DELETE FROM `player_loot_template`; diff --git a/data/sql/base/db_world/player_race_stats.sql b/data/sql/base/db_world/player_race_stats.sql index c5c3ff100..5f3784f87 100644 --- a/data/sql/base/db_world/player_race_stats.sql +++ b/data/sql/base/db_world/player_race_stats.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `player_race_stats` ( `Intellect` int NOT NULL DEFAULT '0', `Spirit` int NOT NULL DEFAULT '0', PRIMARY KEY (`Race`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci PACK_KEYS=0 COMMENT='Stores race stats.'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 PACK_KEYS=0 COMMENT='Stores race stats.'; -- Dumping data for table acore_world.player_race_stats: 10 rows DELETE FROM `player_race_stats`; diff --git a/data/sql/base/db_world/player_xp_for_level.sql b/data/sql/base/db_world/player_xp_for_level.sql index db2fc9eeb..dbb31e777 100644 --- a/data/sql/base/db_world/player_xp_for_level.sql +++ b/data/sql/base/db_world/player_xp_for_level.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `player_xp_for_level` ( `Level` tinyint unsigned NOT NULL, `Experience` int unsigned NOT NULL, PRIMARY KEY (`Level`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.player_xp_for_level: 79 rows DELETE FROM `player_xp_for_level`; diff --git a/data/sql/base/db_world/playercreateinfo.sql b/data/sql/base/db_world/playercreateinfo.sql index 93b376708..ffc69a590 100644 --- a/data/sql/base/db_world/playercreateinfo.sql +++ b/data/sql/base/db_world/playercreateinfo.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `playercreateinfo` ( `position_z` float NOT NULL DEFAULT '0', `orientation` float NOT NULL DEFAULT '0', PRIMARY KEY (`race`,`class`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.playercreateinfo: 62 rows DELETE FROM `playercreateinfo`; diff --git a/data/sql/base/db_world/playercreateinfo_action.sql b/data/sql/base/db_world/playercreateinfo_action.sql index 78e7a5264..86f442c86 100644 --- a/data/sql/base/db_world/playercreateinfo_action.sql +++ b/data/sql/base/db_world/playercreateinfo_action.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `playercreateinfo_action` ( `type` smallint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`race`,`class`,`button`), KEY `playercreateinfo_race_class_index` (`race`,`class`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.playercreateinfo_action: 283 rows DELETE FROM `playercreateinfo_action`; diff --git a/data/sql/base/db_world/playercreateinfo_cast_spell.sql b/data/sql/base/db_world/playercreateinfo_cast_spell.sql index b0fa840fe..d93a9f329 100644 --- a/data/sql/base/db_world/playercreateinfo_cast_spell.sql +++ b/data/sql/base/db_world/playercreateinfo_cast_spell.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `playercreateinfo_cast_spell` ( `classMask` int unsigned NOT NULL DEFAULT '0', `spell` mediumint unsigned NOT NULL DEFAULT '0', `note` varchar(255) DEFAULT NULL -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.playercreateinfo_cast_spell: 2 rows DELETE FROM `playercreateinfo_cast_spell`; diff --git a/data/sql/base/db_world/playercreateinfo_item.sql b/data/sql/base/db_world/playercreateinfo_item.sql index d26eb6233..2b577fe3d 100644 --- a/data/sql/base/db_world/playercreateinfo_item.sql +++ b/data/sql/base/db_world/playercreateinfo_item.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `playercreateinfo_item` ( `Note` varchar(255) DEFAULT NULL, PRIMARY KEY (`race`,`class`,`itemid`), KEY `playercreateinfo_race_class_index` (`race`,`class`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.playercreateinfo_item: 1 rows DELETE FROM `playercreateinfo_item`; diff --git a/data/sql/base/db_world/playercreateinfo_skills.sql b/data/sql/base/db_world/playercreateinfo_skills.sql index 00276705c..4c1c7c2ab 100644 --- a/data/sql/base/db_world/playercreateinfo_skills.sql +++ b/data/sql/base/db_world/playercreateinfo_skills.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `playercreateinfo_skills` ( `rank` smallint unsigned NOT NULL DEFAULT '0', `comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`raceMask`,`classMask`,`skill`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.playercreateinfo_skills: ~77 rows (approximately) DELETE FROM `playercreateinfo_skills`; diff --git a/data/sql/base/db_world/playercreateinfo_spell_custom.sql b/data/sql/base/db_world/playercreateinfo_spell_custom.sql index 14dbc7228..c007e5418 100644 --- a/data/sql/base/db_world/playercreateinfo_spell_custom.sql +++ b/data/sql/base/db_world/playercreateinfo_spell_custom.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `playercreateinfo_spell_custom` ( `Spell` mediumint unsigned NOT NULL DEFAULT '0', `Note` varchar(255) DEFAULT NULL, PRIMARY KEY (`racemask`,`classmask`,`Spell`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.playercreateinfo_spell_custom: 0 rows DELETE FROM `playercreateinfo_spell_custom`; diff --git a/data/sql/base/db_world/points_of_interest.sql b/data/sql/base/db_world/points_of_interest.sql index ec7e2a2ab..cb7ba8721 100644 --- a/data/sql/base/db_world/points_of_interest.sql +++ b/data/sql/base/db_world/points_of_interest.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `points_of_interest` ( `Importance` mediumint unsigned NOT NULL DEFAULT '0', `Name` text NOT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.points_of_interest: 463 rows DELETE FROM `points_of_interest`; diff --git a/data/sql/base/db_world/points_of_interest_locale.sql b/data/sql/base/db_world/points_of_interest_locale.sql index 56eb7f573..3a2fa9fe5 100644 --- a/data/sql/base/db_world/points_of_interest_locale.sql +++ b/data/sql/base/db_world/points_of_interest_locale.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `points_of_interest_locale` ( `Name` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`,`locale`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=COMPACT; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- Dumping data for table acore_world.points_of_interest_locale: ~2,524 rows (approximately) DELETE FROM `points_of_interest_locale`; diff --git a/data/sql/base/db_world/pool_creature.sql b/data/sql/base/db_world/pool_creature.sql index 10ed70383..1bcc66668 100644 --- a/data/sql/base/db_world/pool_creature.sql +++ b/data/sql/base/db_world/pool_creature.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `pool_creature` ( PRIMARY KEY (`guid`), KEY `idx_guid` (`guid`), CONSTRAINT `pool_creature_chk_1` CHECK ((`chance` >= 0)) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.pool_creature: 1,437 rows DELETE FROM `pool_creature`; diff --git a/data/sql/base/db_world/pool_gameobject.sql b/data/sql/base/db_world/pool_gameobject.sql index 07a93d4fa..5bd85d262 100644 --- a/data/sql/base/db_world/pool_gameobject.sql +++ b/data/sql/base/db_world/pool_gameobject.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `pool_gameobject` ( PRIMARY KEY (`guid`), KEY `idx_guid` (`guid`), CONSTRAINT `pool_gameobject_chk_1` CHECK ((`chance` >= 0)) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.pool_gameobject: 29,171 rows DELETE FROM `pool_gameobject`; diff --git a/data/sql/base/db_world/pool_pool.sql b/data/sql/base/db_world/pool_pool.sql index 7df2d4e2e..be56800a9 100644 --- a/data/sql/base/db_world/pool_pool.sql +++ b/data/sql/base/db_world/pool_pool.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `pool_pool` ( `chance` float NOT NULL DEFAULT '0', `description` varchar(255) DEFAULT NULL, PRIMARY KEY (`pool_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.pool_pool: 3,690 rows DELETE FROM `pool_pool`; diff --git a/data/sql/base/db_world/pool_quest.sql b/data/sql/base/db_world/pool_quest.sql index 5db8c12a3..5854b1125 100644 --- a/data/sql/base/db_world/pool_quest.sql +++ b/data/sql/base/db_world/pool_quest.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `pool_quest` ( `description` varchar(255) DEFAULT NULL, PRIMARY KEY (`entry`), KEY `idx_guid` (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.pool_quest: 162 rows DELETE FROM `pool_quest`; diff --git a/data/sql/base/db_world/pool_template.sql b/data/sql/base/db_world/pool_template.sql index 910f55da7..ce131aad2 100644 --- a/data/sql/base/db_world/pool_template.sql +++ b/data/sql/base/db_world/pool_template.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `pool_template` ( `max_limit` int unsigned NOT NULL DEFAULT '0' COMMENT 'Max number of objects (0) is no limit', `description` varchar(255) DEFAULT NULL, PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.pool_template: 4,990 rows DELETE FROM `pool_template`; diff --git a/data/sql/base/db_world/powerdisplay_dbc.sql b/data/sql/base/db_world/powerdisplay_dbc.sql index fffe57f36..c37c38ab7 100644 --- a/data/sql/base/db_world/powerdisplay_dbc.sql +++ b/data/sql/base/db_world/powerdisplay_dbc.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `powerdisplay_dbc` ( `Green` tinyint unsigned NOT NULL DEFAULT '0', `Blue` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.powerdisplay_dbc: 0 rows DELETE FROM `powerdisplay_dbc`; diff --git a/data/sql/base/db_world/prospecting_loot_template.sql b/data/sql/base/db_world/prospecting_loot_template.sql index 2acc8dd27..36dc2ce53 100644 --- a/data/sql/base/db_world/prospecting_loot_template.sql +++ b/data/sql/base/db_world/prospecting_loot_template.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `prospecting_loot_template` ( `MaxCount` tinyint unsigned NOT NULL DEFAULT '1', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`Entry`,`Item`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Loot System'; -- Dumping data for table acore_world.prospecting_loot_template: 37 rows DELETE FROM `prospecting_loot_template`; diff --git a/data/sql/base/db_world/pvpdifficulty_dbc.sql b/data/sql/base/db_world/pvpdifficulty_dbc.sql index 76477bea1..a7d55f594 100644 --- a/data/sql/base/db_world/pvpdifficulty_dbc.sql +++ b/data/sql/base/db_world/pvpdifficulty_dbc.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `pvpdifficulty_dbc` ( `MaxLevel` int NOT NULL DEFAULT '0', `Difficulty` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.pvpdifficulty_dbc: 0 rows DELETE FROM `pvpdifficulty_dbc`; diff --git a/data/sql/base/db_world/quest_details.sql b/data/sql/base/db_world/quest_details.sql index 5577b6286..5b7549690 100644 --- a/data/sql/base/db_world/quest_details.sql +++ b/data/sql/base/db_world/quest_details.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `quest_details` ( `EmoteDelay4` int unsigned NOT NULL DEFAULT '0', `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.quest_details: 2,905 rows DELETE FROM `quest_details`; diff --git a/data/sql/base/db_world/quest_greeting.sql b/data/sql/base/db_world/quest_greeting.sql index b2aaf7753..ab1a58819 100644 --- a/data/sql/base/db_world/quest_greeting.sql +++ b/data/sql/base/db_world/quest_greeting.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `quest_greeting` ( `Greeting` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`,`type`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.quest_greeting: 206 rows DELETE FROM `quest_greeting`; diff --git a/data/sql/base/db_world/quest_greeting_locale.sql b/data/sql/base/db_world/quest_greeting_locale.sql index 09b598b29..47871b3c8 100644 --- a/data/sql/base/db_world/quest_greeting_locale.sql +++ b/data/sql/base/db_world/quest_greeting_locale.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `quest_greeting_locale` ( `Greeting` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`,`type`,`locale`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.quest_greeting_locale: 5 rows DELETE FROM `quest_greeting_locale`; diff --git a/data/sql/base/db_world/quest_mail_sender.sql b/data/sql/base/db_world/quest_mail_sender.sql index 44b41de4c..5ac3d07fd 100644 --- a/data/sql/base/db_world/quest_mail_sender.sql +++ b/data/sql/base/db_world/quest_mail_sender.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `quest_mail_sender` ( `QuestId` int unsigned NOT NULL DEFAULT '0', `RewardMailSenderEntry` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`QuestId`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=COMPACT; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- Dumping data for table acore_world.quest_mail_sender: ~10 rows (approximately) DELETE FROM `quest_mail_sender`; diff --git a/data/sql/base/db_world/quest_money_reward.sql b/data/sql/base/db_world/quest_money_reward.sql index ff57fb800..86b787dad 100644 --- a/data/sql/base/db_world/quest_money_reward.sql +++ b/data/sql/base/db_world/quest_money_reward.sql @@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `quest_money_reward` ( `Money8` int NOT NULL DEFAULT '0', `Money9` int NOT NULL DEFAULT '0', PRIMARY KEY (`Level`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.quest_money_reward: 80 rows DELETE FROM `quest_money_reward`; diff --git a/data/sql/base/db_world/quest_offer_reward.sql b/data/sql/base/db_world/quest_offer_reward.sql index b920d1953..fb0846c7d 100644 --- a/data/sql/base/db_world/quest_offer_reward.sql +++ b/data/sql/base/db_world/quest_offer_reward.sql @@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `quest_offer_reward` ( `RewardText` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.quest_offer_reward: 8,660 rows DELETE FROM `quest_offer_reward`; diff --git a/data/sql/base/db_world/quest_offer_reward_locale.sql b/data/sql/base/db_world/quest_offer_reward_locale.sql index 05dc88edf..221afc02a 100644 --- a/data/sql/base/db_world/quest_offer_reward_locale.sql +++ b/data/sql/base/db_world/quest_offer_reward_locale.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `quest_offer_reward_locale` ( `RewardText` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`,`locale`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=COMPACT; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- Dumping data for table acore_world.quest_offer_reward_locale: ~53,410 rows (approximately) DELETE FROM `quest_offer_reward_locale`; diff --git a/data/sql/base/db_world/quest_poi.sql b/data/sql/base/db_world/quest_poi.sql index e95c0f871..30ae39f5d 100644 --- a/data/sql/base/db_world/quest_poi.sql +++ b/data/sql/base/db_world/quest_poi.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `quest_poi` ( `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`QuestID`,`id`), KEY `idx` (`QuestID`,`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.quest_poi: 18,771 rows DELETE FROM `quest_poi`; diff --git a/data/sql/base/db_world/quest_poi_points.sql b/data/sql/base/db_world/quest_poi_points.sql index dfa04d3ee..15f9a0f55 100644 --- a/data/sql/base/db_world/quest_poi_points.sql +++ b/data/sql/base/db_world/quest_poi_points.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `quest_poi_points` ( `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`QuestID`,`Idx1`,`Idx2`), KEY `questId_id` (`QuestID`,`Idx1`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.quest_poi_points: 57,147 rows DELETE FROM `quest_poi_points`; diff --git a/data/sql/base/db_world/quest_request_items.sql b/data/sql/base/db_world/quest_request_items.sql index 5461f6e3c..85f2da607 100644 --- a/data/sql/base/db_world/quest_request_items.sql +++ b/data/sql/base/db_world/quest_request_items.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `quest_request_items` ( `CompletionText` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.quest_request_items: 7,757 rows DELETE FROM `quest_request_items`; diff --git a/data/sql/base/db_world/quest_request_items_locale.sql b/data/sql/base/db_world/quest_request_items_locale.sql index 52095712b..35bf980f2 100644 --- a/data/sql/base/db_world/quest_request_items_locale.sql +++ b/data/sql/base/db_world/quest_request_items_locale.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `quest_request_items_locale` ( `CompletionText` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`,`locale`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=COMPACT; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- Dumping data for table acore_world.quest_request_items_locale: ~38,435 rows (approximately) DELETE FROM `quest_request_items_locale`; diff --git a/data/sql/base/db_world/quest_template.sql b/data/sql/base/db_world/quest_template.sql index 0a5febe44..fbee8815f 100644 --- a/data/sql/base/db_world/quest_template.sql +++ b/data/sql/base/db_world/quest_template.sql @@ -124,7 +124,7 @@ CREATE TABLE IF NOT EXISTS `quest_template` ( `ObjectiveText4` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Quest System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Quest System'; -- Dumping data for table acore_world.quest_template: 9,464 rows DELETE FROM `quest_template`; diff --git a/data/sql/base/db_world/quest_template_addon.sql b/data/sql/base/db_world/quest_template_addon.sql index 9dd5cde4e..ebd71678e 100644 --- a/data/sql/base/db_world/quest_template_addon.sql +++ b/data/sql/base/db_world/quest_template_addon.sql @@ -35,7 +35,7 @@ CREATE TABLE IF NOT EXISTS `quest_template_addon` ( `ProvidedItemCount` tinyint unsigned NOT NULL DEFAULT '0', `SpecialFlags` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.quest_template_addon: 9,464 rows DELETE FROM `quest_template_addon`; diff --git a/data/sql/base/db_world/quest_template_locale.sql b/data/sql/base/db_world/quest_template_locale.sql index 9f08ed087..71c6af742 100644 --- a/data/sql/base/db_world/quest_template_locale.sql +++ b/data/sql/base/db_world/quest_template_locale.sql @@ -30,7 +30,7 @@ CREATE TABLE IF NOT EXISTS `quest_template_locale` ( `ObjectiveText4` text, `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`,`locale`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=COMPACT; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT; -- Dumping data for table acore_world.quest_template_locale: ~56,832 rows (approximately) DELETE FROM `quest_template_locale`; diff --git a/data/sql/base/db_world/questfactionreward_dbc.sql b/data/sql/base/db_world/questfactionreward_dbc.sql index ddf3c060b..1ff3e5b98 100644 --- a/data/sql/base/db_world/questfactionreward_dbc.sql +++ b/data/sql/base/db_world/questfactionreward_dbc.sql @@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `questfactionreward_dbc` ( `Difficulty_9` int NOT NULL DEFAULT '0', `Difficulty_10` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.questfactionreward_dbc: 0 rows DELETE FROM `questfactionreward_dbc`; diff --git a/data/sql/base/db_world/questsort_dbc.sql b/data/sql/base/db_world/questsort_dbc.sql index 80c25dbfb..4c6127bd8 100644 --- a/data/sql/base/db_world/questsort_dbc.sql +++ b/data/sql/base/db_world/questsort_dbc.sql @@ -36,7 +36,7 @@ CREATE TABLE IF NOT EXISTS `questsort_dbc` ( `SortName_Lang_Unk` varchar(100) DEFAULT NULL, `SortName_Lang_Mask` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.questsort_dbc: 0 rows DELETE FROM `questsort_dbc`; diff --git a/data/sql/base/db_world/questxp_dbc.sql b/data/sql/base/db_world/questxp_dbc.sql index 2346a1e08..073e5b773 100644 --- a/data/sql/base/db_world/questxp_dbc.sql +++ b/data/sql/base/db_world/questxp_dbc.sql @@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `questxp_dbc` ( `Difficulty_9` int NOT NULL DEFAULT '0', `Difficulty_10` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.questxp_dbc: 0 rows DELETE FROM `questxp_dbc`; diff --git a/data/sql/base/db_world/randproppoints_dbc.sql b/data/sql/base/db_world/randproppoints_dbc.sql index a9553c7e9..edb77acab 100644 --- a/data/sql/base/db_world/randproppoints_dbc.sql +++ b/data/sql/base/db_world/randproppoints_dbc.sql @@ -34,7 +34,7 @@ CREATE TABLE IF NOT EXISTS `randproppoints_dbc` ( `Good_4` int NOT NULL DEFAULT '0', `Good_5` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.randproppoints_dbc: 0 rows DELETE FROM `randproppoints_dbc`; diff --git a/data/sql/base/db_world/reference_loot_template.sql b/data/sql/base/db_world/reference_loot_template.sql index b86d6b24e..34eb136f0 100644 --- a/data/sql/base/db_world/reference_loot_template.sql +++ b/data/sql/base/db_world/reference_loot_template.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `reference_loot_template` ( `MaxCount` tinyint unsigned NOT NULL DEFAULT '1', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`Entry`,`Item`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Loot System'; -- Dumping data for table acore_world.reference_loot_template: 15,314 rows DELETE FROM `reference_loot_template`; diff --git a/data/sql/base/db_world/reputation_reward_rate.sql b/data/sql/base/db_world/reputation_reward_rate.sql index 4b818c292..2856e6b57 100644 --- a/data/sql/base/db_world/reputation_reward_rate.sql +++ b/data/sql/base/db_world/reputation_reward_rate.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `reputation_reward_rate` ( `creature_rate` float NOT NULL DEFAULT '1', `spell_rate` float NOT NULL DEFAULT '1', PRIMARY KEY (`faction`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.reputation_reward_rate: 14 rows DELETE FROM `reputation_reward_rate`; diff --git a/data/sql/base/db_world/reputation_spillover_template.sql b/data/sql/base/db_world/reputation_spillover_template.sql index dd178fcf7..21e151742 100644 --- a/data/sql/base/db_world/reputation_spillover_template.sql +++ b/data/sql/base/db_world/reputation_spillover_template.sql @@ -31,7 +31,7 @@ CREATE TABLE IF NOT EXISTS `reputation_spillover_template` ( `rate_4` float NOT NULL DEFAULT '0', `rank_4` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`faction`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='Reputation spillover reputation gain'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Reputation spillover reputation gain'; -- Dumping data for table acore_world.reputation_spillover_template: 26 rows DELETE FROM `reputation_spillover_template`; diff --git a/data/sql/base/db_world/scalingstatdistribution_dbc.sql b/data/sql/base/db_world/scalingstatdistribution_dbc.sql index f9ef25c42..1d6283040 100644 --- a/data/sql/base/db_world/scalingstatdistribution_dbc.sql +++ b/data/sql/base/db_world/scalingstatdistribution_dbc.sql @@ -40,7 +40,7 @@ CREATE TABLE IF NOT EXISTS `scalingstatdistribution_dbc` ( `Bonus_10` int NOT NULL DEFAULT '0', `Maxlevel` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.scalingstatdistribution_dbc: 0 rows DELETE FROM `scalingstatdistribution_dbc`; diff --git a/data/sql/base/db_world/scalingstatvalues_dbc.sql b/data/sql/base/db_world/scalingstatvalues_dbc.sql index d367d4678..f7c6f76ec 100644 --- a/data/sql/base/db_world/scalingstatvalues_dbc.sql +++ b/data/sql/base/db_world/scalingstatvalues_dbc.sql @@ -42,7 +42,7 @@ CREATE TABLE IF NOT EXISTS `scalingstatvalues_dbc` ( `MailChestArmor` int NOT NULL DEFAULT '0', `PlateChestArmor` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.scalingstatvalues_dbc: 0 rows DELETE FROM `scalingstatvalues_dbc`; diff --git a/data/sql/base/db_world/script_waypoint.sql b/data/sql/base/db_world/script_waypoint.sql index 11507860d..9e084ad3b 100644 --- a/data/sql/base/db_world/script_waypoint.sql +++ b/data/sql/base/db_world/script_waypoint.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `script_waypoint` ( `waittime` int unsigned NOT NULL DEFAULT '0' COMMENT 'waittime in millisecs', `point_comment` text, PRIMARY KEY (`entry`,`pointid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Script Creature waypoints'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Script Creature waypoints'; -- Dumping data for table acore_world.script_waypoint: 2,388 rows DELETE FROM `script_waypoint`; diff --git a/data/sql/base/db_world/skill_discovery_template.sql b/data/sql/base/db_world/skill_discovery_template.sql index e53977b78..11fd5a768 100644 --- a/data/sql/base/db_world/skill_discovery_template.sql +++ b/data/sql/base/db_world/skill_discovery_template.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `skill_discovery_template` ( `reqSkillValue` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'skill points requirement', `chance` float NOT NULL DEFAULT '0' COMMENT 'chance to discover', PRIMARY KEY (`spellId`,`reqSpell`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Skill Discovery System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Skill Discovery System'; -- Dumping data for table acore_world.skill_discovery_template: 347 rows DELETE FROM `skill_discovery_template`; diff --git a/data/sql/base/db_world/skill_extra_item_template.sql b/data/sql/base/db_world/skill_extra_item_template.sql index 689c38fdd..78af4901f 100644 --- a/data/sql/base/db_world/skill_extra_item_template.sql +++ b/data/sql/base/db_world/skill_extra_item_template.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `skill_extra_item_template` ( `additionalCreateChance` float NOT NULL DEFAULT '0' COMMENT 'chance to create add', `additionalMaxNum` tinyint NOT NULL DEFAULT '0', PRIMARY KEY (`spellId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Skill Specialization System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Skill Specialization System'; -- Dumping data for table acore_world.skill_extra_item_template: 226 rows DELETE FROM `skill_extra_item_template`; diff --git a/data/sql/base/db_world/skill_fishing_base_level.sql b/data/sql/base/db_world/skill_fishing_base_level.sql index eedea5a5d..55392a7fb 100644 --- a/data/sql/base/db_world/skill_fishing_base_level.sql +++ b/data/sql/base/db_world/skill_fishing_base_level.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `skill_fishing_base_level` ( `entry` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Area identifier', `skill` smallint NOT NULL DEFAULT '0' COMMENT 'Base skill level requirement', PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Fishing system'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Fishing system'; -- Dumping data for table acore_world.skill_fishing_base_level: 94 rows DELETE FROM `skill_fishing_base_level`; diff --git a/data/sql/base/db_world/skill_perfect_item_template.sql b/data/sql/base/db_world/skill_perfect_item_template.sql index c0a12e68a..8270e1429 100644 --- a/data/sql/base/db_world/skill_perfect_item_template.sql +++ b/data/sql/base/db_world/skill_perfect_item_template.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `skill_perfect_item_template` ( `perfectCreateChance` float NOT NULL DEFAULT '0' COMMENT 'chance to create the perfect item instead', `perfectItemType` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'perfect item type to create instead', PRIMARY KEY (`spellId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Crafting Perfection System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Crafting Perfection System'; -- Dumping data for table acore_world.skill_perfect_item_template: 72 rows DELETE FROM `skill_perfect_item_template`; diff --git a/data/sql/base/db_world/skillline_dbc.sql b/data/sql/base/db_world/skillline_dbc.sql index add7b69ea..046fc04e8 100644 --- a/data/sql/base/db_world/skillline_dbc.sql +++ b/data/sql/base/db_world/skillline_dbc.sql @@ -74,7 +74,7 @@ CREATE TABLE IF NOT EXISTS `skillline_dbc` ( `AlternateVerb_Lang_Mask` int unsigned NOT NULL DEFAULT '0', `CanLink` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.skillline_dbc: 0 rows DELETE FROM `skillline_dbc`; diff --git a/data/sql/base/db_world/skilllineability_dbc.sql b/data/sql/base/db_world/skilllineability_dbc.sql index b9bf82763..8758865a5 100644 --- a/data/sql/base/db_world/skilllineability_dbc.sql +++ b/data/sql/base/db_world/skilllineability_dbc.sql @@ -32,7 +32,7 @@ CREATE TABLE IF NOT EXISTS `skilllineability_dbc` ( `CharacterPoints_1` int NOT NULL DEFAULT '0', `CharacterPoints_2` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.skilllineability_dbc: 0 rows DELETE FROM `skilllineability_dbc`; diff --git a/data/sql/base/db_world/skillraceclassinfo_dbc.sql b/data/sql/base/db_world/skillraceclassinfo_dbc.sql index 45b870cf3..ec8fadc57 100644 --- a/data/sql/base/db_world/skillraceclassinfo_dbc.sql +++ b/data/sql/base/db_world/skillraceclassinfo_dbc.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `skillraceclassinfo_dbc` ( `SkillTierID` int NOT NULL DEFAULT '0', `SkillCostIndex` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.skillraceclassinfo_dbc: 0 rows DELETE FROM `skillraceclassinfo_dbc`; diff --git a/data/sql/base/db_world/skilltiers_dbc.sql b/data/sql/base/db_world/skilltiers_dbc.sql index 2b78e701e..267460d7b 100644 --- a/data/sql/base/db_world/skilltiers_dbc.sql +++ b/data/sql/base/db_world/skilltiers_dbc.sql @@ -51,7 +51,7 @@ CREATE TABLE IF NOT EXISTS `skilltiers_dbc` ( `Value_15` int NOT NULL DEFAULT '0', `Value_16` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.skilltiers_dbc: 0 rows DELETE FROM `skilltiers_dbc`; diff --git a/data/sql/base/db_world/skinning_loot_template.sql b/data/sql/base/db_world/skinning_loot_template.sql index 5ea27c0c1..0f54eb2d4 100644 --- a/data/sql/base/db_world/skinning_loot_template.sql +++ b/data/sql/base/db_world/skinning_loot_template.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `skinning_loot_template` ( `MaxCount` tinyint unsigned NOT NULL DEFAULT '1', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`Entry`,`Item`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Loot System'; -- Dumping data for table acore_world.skinning_loot_template: 1,880 rows DELETE FROM `skinning_loot_template`; diff --git a/data/sql/base/db_world/smart_scripts.sql b/data/sql/base/db_world/smart_scripts.sql index 40409fad3..0778920ae 100644 --- a/data/sql/base/db_world/smart_scripts.sql +++ b/data/sql/base/db_world/smart_scripts.sql @@ -48,7 +48,7 @@ CREATE TABLE IF NOT EXISTS `smart_scripts` ( `target_o` float NOT NULL DEFAULT '0', `comment` text NOT NULL COMMENT 'Event Comment', PRIMARY KEY (`entryorguid`,`source_type`,`id`,`link`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.smart_scripts: 46,172 rows DELETE FROM `smart_scripts`; diff --git a/data/sql/base/db_world/soundentries_dbc.sql b/data/sql/base/db_world/soundentries_dbc.sql index 345520884..61117b96e 100644 --- a/data/sql/base/db_world/soundentries_dbc.sql +++ b/data/sql/base/db_world/soundentries_dbc.sql @@ -48,7 +48,7 @@ CREATE TABLE IF NOT EXISTS `soundentries_dbc` ( `EAXDef` int NOT NULL DEFAULT '0', `SoundEntriesAdvancedID` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.soundentries_dbc: 0 rows DELETE FROM `soundentries_dbc`; diff --git a/data/sql/base/db_world/spell_area.sql b/data/sql/base/db_world/spell_area.sql index 4c83148ba..53536600d 100644 --- a/data/sql/base/db_world/spell_area.sql +++ b/data/sql/base/db_world/spell_area.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `spell_area` ( `quest_start_status` int NOT NULL DEFAULT '64', `quest_end_status` int NOT NULL DEFAULT '11', PRIMARY KEY (`spell`,`area`,`quest_start`,`aura_spell`,`racemask`,`gender`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spell_area: 697 rows DELETE FROM `spell_area`; diff --git a/data/sql/base/db_world/spell_bonus_data.sql b/data/sql/base/db_world/spell_bonus_data.sql index 0c9448aa3..caf9be3d3 100644 --- a/data/sql/base/db_world/spell_bonus_data.sql +++ b/data/sql/base/db_world/spell_bonus_data.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `spell_bonus_data` ( `ap_dot_bonus` float NOT NULL DEFAULT '0', `comments` varchar(255) DEFAULT NULL, PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spell_bonus_data: 1,270 rows DELETE FROM `spell_bonus_data`; diff --git a/data/sql/base/db_world/spell_custom_attr.sql b/data/sql/base/db_world/spell_custom_attr.sql index 4660e25d4..e927771e3 100644 --- a/data/sql/base/db_world/spell_custom_attr.sql +++ b/data/sql/base/db_world/spell_custom_attr.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `spell_custom_attr` ( `spell_id` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'spell id', `attributes` int unsigned NOT NULL DEFAULT '0' COMMENT 'SpellCustomAttributes', PRIMARY KEY (`spell_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='SpellInfo custom attributes'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='SpellInfo custom attributes'; -- Dumping data for table acore_world.spell_custom_attr: 264 rows DELETE FROM `spell_custom_attr`; diff --git a/data/sql/base/db_world/spell_dbc.sql b/data/sql/base/db_world/spell_dbc.sql index 57a0b027b..926bea22c 100644 --- a/data/sql/base/db_world/spell_dbc.sql +++ b/data/sql/base/db_world/spell_dbc.sql @@ -252,7 +252,7 @@ CREATE TABLE IF NOT EXISTS `spell_dbc` ( `SpellDescriptionVariableID` int unsigned NOT NULL DEFAULT '0', `SpellDifficultyID` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- Dumping data for table acore_world.spell_dbc: 4,543 rows DELETE FROM `spell_dbc`; diff --git a/data/sql/base/db_world/spell_enchant_proc_data.sql b/data/sql/base/db_world/spell_enchant_proc_data.sql index 50dd56bab..02815b145 100644 --- a/data/sql/base/db_world/spell_enchant_proc_data.sql +++ b/data/sql/base/db_world/spell_enchant_proc_data.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `spell_enchant_proc_data` ( `procEx` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`entry`), CONSTRAINT `spell_enchant_proc_data_chk_1` CHECK ((`PPMChance` >= 0)) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='Spell enchant proc data'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Spell enchant proc data'; -- Dumping data for table acore_world.spell_enchant_proc_data: 42 rows DELETE FROM `spell_enchant_proc_data`; diff --git a/data/sql/base/db_world/spell_group.sql b/data/sql/base/db_world/spell_group.sql index 98dd89f3c..238f26cb4 100644 --- a/data/sql/base/db_world/spell_group.sql +++ b/data/sql/base/db_world/spell_group.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `spell_group` ( `spell_id` int unsigned NOT NULL DEFAULT '0', `special_flag` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`,`spell_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Spell System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Spell System'; -- Dumping data for table acore_world.spell_group: 356 rows DELETE FROM `spell_group`; diff --git a/data/sql/base/db_world/spell_group_stack_rules.sql b/data/sql/base/db_world/spell_group_stack_rules.sql index 73468bc67..5ca128418 100644 --- a/data/sql/base/db_world/spell_group_stack_rules.sql +++ b/data/sql/base/db_world/spell_group_stack_rules.sql @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `spell_group_stack_rules` ( `stack_rule` tinyint NOT NULL DEFAULT '0', `description` varchar(150) NOT NULL DEFAULT '', PRIMARY KEY (`group_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spell_group_stack_rules: 37 rows DELETE FROM `spell_group_stack_rules`; diff --git a/data/sql/base/db_world/spell_linked_spell.sql b/data/sql/base/db_world/spell_linked_spell.sql index 32f066b9f..c8abd8dbc 100644 --- a/data/sql/base/db_world/spell_linked_spell.sql +++ b/data/sql/base/db_world/spell_linked_spell.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `spell_linked_spell` ( `type` tinyint unsigned NOT NULL DEFAULT '0', `comment` text NOT NULL, UNIQUE KEY `trigger_effect_type` (`spell_trigger`,`spell_effect`,`type`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Spell System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Spell System'; -- Dumping data for table acore_world.spell_linked_spell: 578 rows DELETE FROM `spell_linked_spell`; diff --git a/data/sql/base/db_world/spell_loot_template.sql b/data/sql/base/db_world/spell_loot_template.sql index c0178d746..6ea3068da 100644 --- a/data/sql/base/db_world/spell_loot_template.sql +++ b/data/sql/base/db_world/spell_loot_template.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `spell_loot_template` ( `MaxCount` tinyint unsigned NOT NULL DEFAULT '1', `Comment` varchar(255) DEFAULT NULL, PRIMARY KEY (`Entry`,`Item`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Loot System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Loot System'; -- Dumping data for table acore_world.spell_loot_template: 163 rows DELETE FROM `spell_loot_template`; diff --git a/data/sql/base/db_world/spell_mixology.sql b/data/sql/base/db_world/spell_mixology.sql index 7472cde15..7b78277f0 100644 --- a/data/sql/base/db_world/spell_mixology.sql +++ b/data/sql/base/db_world/spell_mixology.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `spell_mixology` ( `entry` mediumint unsigned NOT NULL, `pctMod` float NOT NULL DEFAULT '30' COMMENT 'bonus multiplier', PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.spell_mixology: 21 rows DELETE FROM `spell_mixology`; diff --git a/data/sql/base/db_world/spell_pet_auras.sql b/data/sql/base/db_world/spell_pet_auras.sql index 389be5ba0..fbe02ad3c 100644 --- a/data/sql/base/db_world/spell_pet_auras.sql +++ b/data/sql/base/db_world/spell_pet_auras.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `spell_pet_auras` ( `pet` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'pet id; 0 = all', `aura` mediumint unsigned NOT NULL COMMENT 'pet aura id', PRIMARY KEY (`spell`,`effectId`,`pet`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spell_pet_auras: 49 rows DELETE FROM `spell_pet_auras`; diff --git a/data/sql/base/db_world/spell_proc.sql b/data/sql/base/db_world/spell_proc.sql index 8a45bb44e..de756cfbc 100644 --- a/data/sql/base/db_world/spell_proc.sql +++ b/data/sql/base/db_world/spell_proc.sql @@ -33,7 +33,7 @@ CREATE TABLE IF NOT EXISTS `spell_proc` ( `Cooldown` int unsigned NOT NULL DEFAULT '0', `Charges` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`SpellId`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spell_proc: 0 rows DELETE FROM `spell_proc`; diff --git a/data/sql/base/db_world/spell_proc_event.sql b/data/sql/base/db_world/spell_proc_event.sql index 824cc0b30..e1983a728 100644 --- a/data/sql/base/db_world/spell_proc_event.sql +++ b/data/sql/base/db_world/spell_proc_event.sql @@ -30,7 +30,7 @@ CREATE TABLE IF NOT EXISTS `spell_proc_event` ( `CustomChance` float NOT NULL DEFAULT '0', `Cooldown` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spell_proc_event: 813 rows DELETE FROM `spell_proc_event`; diff --git a/data/sql/base/db_world/spell_ranks.sql b/data/sql/base/db_world/spell_ranks.sql index 2a618a0e7..ae1d8d1fc 100644 --- a/data/sql/base/db_world/spell_ranks.sql +++ b/data/sql/base/db_world/spell_ranks.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `spell_ranks` ( `rank` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`first_spell_id`,`rank`), UNIQUE KEY `spell_id` (`spell_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Spell Rank Data'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Spell Rank Data'; -- Dumping data for table acore_world.spell_ranks: 3,502 rows DELETE FROM `spell_ranks`; diff --git a/data/sql/base/db_world/spell_required.sql b/data/sql/base/db_world/spell_required.sql index 604124280..5d1b143b0 100644 --- a/data/sql/base/db_world/spell_required.sql +++ b/data/sql/base/db_world/spell_required.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `spell_required` ( `spell_id` mediumint NOT NULL DEFAULT '0', `req_spell` mediumint NOT NULL DEFAULT '0', PRIMARY KEY (`spell_id`,`req_spell`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Spell Additinal Data'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Spell Additinal Data'; -- Dumping data for table acore_world.spell_required: 50 rows DELETE FROM `spell_required`; diff --git a/data/sql/base/db_world/spell_script_names.sql b/data/sql/base/db_world/spell_script_names.sql index a8976306f..9449f8d73 100644 --- a/data/sql/base/db_world/spell_script_names.sql +++ b/data/sql/base/db_world/spell_script_names.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `spell_script_names` ( `spell_id` int NOT NULL, `ScriptName` char(64) NOT NULL, UNIQUE KEY `spell_id` (`spell_id`,`ScriptName`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spell_script_names: 2,086 rows DELETE FROM `spell_script_names`; diff --git a/data/sql/base/db_world/spell_scripts.sql b/data/sql/base/db_world/spell_scripts.sql index 602863a78..a4f362ecc 100644 --- a/data/sql/base/db_world/spell_scripts.sql +++ b/data/sql/base/db_world/spell_scripts.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `spell_scripts` ( `y` float NOT NULL DEFAULT '0', `z` float NOT NULL DEFAULT '0', `o` float NOT NULL DEFAULT '0' -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spell_scripts: 130 rows DELETE FROM `spell_scripts`; diff --git a/data/sql/base/db_world/spell_target_position.sql b/data/sql/base/db_world/spell_target_position.sql index 1fdbfc6b3..72e823772 100644 --- a/data/sql/base/db_world/spell_target_position.sql +++ b/data/sql/base/db_world/spell_target_position.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `spell_target_position` ( `Orientation` float NOT NULL DEFAULT '0', `VerifiedBuild` mediumint DEFAULT NULL, PRIMARY KEY (`ID`,`EffectIndex`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Spell System'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Spell System'; -- Dumping data for table acore_world.spell_target_position: 667 rows DELETE FROM `spell_target_position`; diff --git a/data/sql/base/db_world/spell_threat.sql b/data/sql/base/db_world/spell_threat.sql index 24e705692..f85d2d7c4 100644 --- a/data/sql/base/db_world/spell_threat.sql +++ b/data/sql/base/db_world/spell_threat.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `spell_threat` ( `pctMod` float NOT NULL DEFAULT '1' COMMENT 'threat multiplier for damage/healing', `apPctMod` float NOT NULL DEFAULT '0' COMMENT 'additional threat bonus from attack power', PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.spell_threat: 107 rows DELETE FROM `spell_threat`; diff --git a/data/sql/base/db_world/spellcasttimes_dbc.sql b/data/sql/base/db_world/spellcasttimes_dbc.sql index d38095cc2..7cd2584cb 100644 --- a/data/sql/base/db_world/spellcasttimes_dbc.sql +++ b/data/sql/base/db_world/spellcasttimes_dbc.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `spellcasttimes_dbc` ( `PerLevel` int NOT NULL DEFAULT '0', `Minimum` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spellcasttimes_dbc: 0 rows DELETE FROM `spellcasttimes_dbc`; diff --git a/data/sql/base/db_world/spellcategory_dbc.sql b/data/sql/base/db_world/spellcategory_dbc.sql index f8d7c4b32..1b223ccc7 100644 --- a/data/sql/base/db_world/spellcategory_dbc.sql +++ b/data/sql/base/db_world/spellcategory_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `spellcategory_dbc` ( `ID` int NOT NULL DEFAULT '0', `Flags` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spellcategory_dbc: 0 rows DELETE FROM `spellcategory_dbc`; diff --git a/data/sql/base/db_world/spelldifficulty_dbc.sql b/data/sql/base/db_world/spelldifficulty_dbc.sql index f3d75d4ba..0204c937c 100644 --- a/data/sql/base/db_world/spelldifficulty_dbc.sql +++ b/data/sql/base/db_world/spelldifficulty_dbc.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `spelldifficulty_dbc` ( `DifficultySpellID_3` int NOT NULL DEFAULT '0', `DifficultySpellID_4` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spelldifficulty_dbc: 300 rows DELETE FROM `spelldifficulty_dbc`; diff --git a/data/sql/base/db_world/spellduration_dbc.sql b/data/sql/base/db_world/spellduration_dbc.sql index d34e965b5..48013261d 100644 --- a/data/sql/base/db_world/spellduration_dbc.sql +++ b/data/sql/base/db_world/spellduration_dbc.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `spellduration_dbc` ( `DurationPerLevel` int NOT NULL DEFAULT '0', `MaxDuration` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spellduration_dbc: 0 rows DELETE FROM `spellduration_dbc`; diff --git a/data/sql/base/db_world/spellfocusobject_dbc.sql b/data/sql/base/db_world/spellfocusobject_dbc.sql index f3e19c975..8b4889896 100644 --- a/data/sql/base/db_world/spellfocusobject_dbc.sql +++ b/data/sql/base/db_world/spellfocusobject_dbc.sql @@ -36,7 +36,7 @@ CREATE TABLE IF NOT EXISTS `spellfocusobject_dbc` ( `Name_Lang_Unk` varchar(100) DEFAULT NULL, `Name_Lang_Mask` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spellfocusobject_dbc: 0 rows DELETE FROM `spellfocusobject_dbc`; diff --git a/data/sql/base/db_world/spellitemenchantment_dbc.sql b/data/sql/base/db_world/spellitemenchantment_dbc.sql index 8e01a8b9b..60d0abd35 100644 --- a/data/sql/base/db_world/spellitemenchantment_dbc.sql +++ b/data/sql/base/db_world/spellitemenchantment_dbc.sql @@ -56,7 +56,7 @@ CREATE TABLE IF NOT EXISTS `spellitemenchantment_dbc` ( `RequiredSkillRank` int NOT NULL DEFAULT '0', `MinLevel` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spellitemenchantment_dbc: 0 rows DELETE FROM `spellitemenchantment_dbc`; diff --git a/data/sql/base/db_world/spellitemenchantmentcondition_dbc.sql b/data/sql/base/db_world/spellitemenchantmentcondition_dbc.sql index 68693162c..e235e938d 100644 --- a/data/sql/base/db_world/spellitemenchantmentcondition_dbc.sql +++ b/data/sql/base/db_world/spellitemenchantmentcondition_dbc.sql @@ -49,7 +49,7 @@ CREATE TABLE IF NOT EXISTS `spellitemenchantmentcondition_dbc` ( `Logic_4` tinyint unsigned NOT NULL DEFAULT '0', `Logic_5` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spellitemenchantmentcondition_dbc: 0 rows DELETE FROM `spellitemenchantmentcondition_dbc`; diff --git a/data/sql/base/db_world/spellradius_dbc.sql b/data/sql/base/db_world/spellradius_dbc.sql index 406237262..c07ca15c5 100644 --- a/data/sql/base/db_world/spellradius_dbc.sql +++ b/data/sql/base/db_world/spellradius_dbc.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `spellradius_dbc` ( `RadiusPerLevel` float NOT NULL DEFAULT '0', `RadiusMax` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spellradius_dbc: 0 rows DELETE FROM `spellradius_dbc`; diff --git a/data/sql/base/db_world/spellrange_dbc.sql b/data/sql/base/db_world/spellrange_dbc.sql index b795ebfac..bcc141415 100644 --- a/data/sql/base/db_world/spellrange_dbc.sql +++ b/data/sql/base/db_world/spellrange_dbc.sql @@ -58,7 +58,7 @@ CREATE TABLE IF NOT EXISTS `spellrange_dbc` ( `DisplayNameShort_Lang_Unk` text, `DisplayNameShort_Lang_Mask` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spellrange_dbc: 0 rows DELETE FROM `spellrange_dbc`; diff --git a/data/sql/base/db_world/spellrunecost_dbc.sql b/data/sql/base/db_world/spellrunecost_dbc.sql index 4b27ed144..5c3e19587 100644 --- a/data/sql/base/db_world/spellrunecost_dbc.sql +++ b/data/sql/base/db_world/spellrunecost_dbc.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `spellrunecost_dbc` ( `Frost` int NOT NULL DEFAULT '0', `RunicPower` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spellrunecost_dbc: 0 rows DELETE FROM `spellrunecost_dbc`; diff --git a/data/sql/base/db_world/spellshapeshiftform_dbc.sql b/data/sql/base/db_world/spellshapeshiftform_dbc.sql index 618333d7e..eb890b617 100644 --- a/data/sql/base/db_world/spellshapeshiftform_dbc.sql +++ b/data/sql/base/db_world/spellshapeshiftform_dbc.sql @@ -53,7 +53,7 @@ CREATE TABLE IF NOT EXISTS `spellshapeshiftform_dbc` ( `PresetSpellID_7` int NOT NULL DEFAULT '0', `PresetSpellID_8` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spellshapeshiftform_dbc: 0 rows DELETE FROM `spellshapeshiftform_dbc`; diff --git a/data/sql/base/db_world/spellvisual_dbc.sql b/data/sql/base/db_world/spellvisual_dbc.sql index f392bb2cc..2d9756b30 100644 --- a/data/sql/base/db_world/spellvisual_dbc.sql +++ b/data/sql/base/db_world/spellvisual_dbc.sql @@ -50,7 +50,7 @@ CREATE TABLE IF NOT EXISTS `spellvisual_dbc` ( `MissileImpactOffsetY` float NOT NULL DEFAULT '0', `MissileImpactOffsetZ` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.spellvisual_dbc: 0 rows DELETE FROM `spellvisual_dbc`; diff --git a/data/sql/base/db_world/stableslotprices_dbc.sql b/data/sql/base/db_world/stableslotprices_dbc.sql index c946eb5e0..6ca0f115d 100644 --- a/data/sql/base/db_world/stableslotprices_dbc.sql +++ b/data/sql/base/db_world/stableslotprices_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `stableslotprices_dbc` ( `ID` int NOT NULL DEFAULT '0', `Cost` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.stableslotprices_dbc: 0 rows DELETE FROM `stableslotprices_dbc`; diff --git a/data/sql/base/db_world/summonproperties_dbc.sql b/data/sql/base/db_world/summonproperties_dbc.sql index 4e8b85811..219c84cdf 100644 --- a/data/sql/base/db_world/summonproperties_dbc.sql +++ b/data/sql/base/db_world/summonproperties_dbc.sql @@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `summonproperties_dbc` ( `Slot` int NOT NULL DEFAULT '0', `Flags` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.summonproperties_dbc: 0 rows DELETE FROM `summonproperties_dbc`; diff --git a/data/sql/base/db_world/talent_dbc.sql b/data/sql/base/db_world/talent_dbc.sql index f97fb946b..241a19513 100644 --- a/data/sql/base/db_world/talent_dbc.sql +++ b/data/sql/base/db_world/talent_dbc.sql @@ -41,7 +41,7 @@ CREATE TABLE IF NOT EXISTS `talent_dbc` ( `CategoryMask_1` int NOT NULL DEFAULT '0', `CategoryMask_2` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.talent_dbc: 0 rows DELETE FROM `talent_dbc`; diff --git a/data/sql/base/db_world/talenttab_dbc.sql b/data/sql/base/db_world/talenttab_dbc.sql index bfed2b7a6..7a6e871cb 100644 --- a/data/sql/base/db_world/talenttab_dbc.sql +++ b/data/sql/base/db_world/talenttab_dbc.sql @@ -42,7 +42,7 @@ CREATE TABLE IF NOT EXISTS `talenttab_dbc` ( `OrderIndex` int NOT NULL DEFAULT '0', `BackgroundFile` varchar(100) DEFAULT NULL, PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.talenttab_dbc: 0 rows DELETE FROM `talenttab_dbc`; diff --git a/data/sql/base/db_world/taxinodes_dbc.sql b/data/sql/base/db_world/taxinodes_dbc.sql index 28c26f569..d6682acd9 100644 --- a/data/sql/base/db_world/taxinodes_dbc.sql +++ b/data/sql/base/db_world/taxinodes_dbc.sql @@ -42,7 +42,7 @@ CREATE TABLE IF NOT EXISTS `taxinodes_dbc` ( `MountCreatureID_1` int NOT NULL DEFAULT '0', `MountCreatureID_2` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.taxinodes_dbc: 0 rows DELETE FROM `taxinodes_dbc`; diff --git a/data/sql/base/db_world/taxipath_dbc.sql b/data/sql/base/db_world/taxipath_dbc.sql index e5bfd43b4..c50c91ba1 100644 --- a/data/sql/base/db_world/taxipath_dbc.sql +++ b/data/sql/base/db_world/taxipath_dbc.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `taxipath_dbc` ( `ToTaxiNode` int NOT NULL DEFAULT '0', `Cost` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.taxipath_dbc: 0 rows DELETE FROM `taxipath_dbc`; diff --git a/data/sql/base/db_world/taxipathnode_dbc.sql b/data/sql/base/db_world/taxipathnode_dbc.sql index 31ade60c3..f54847a7e 100644 --- a/data/sql/base/db_world/taxipathnode_dbc.sql +++ b/data/sql/base/db_world/taxipathnode_dbc.sql @@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `taxipathnode_dbc` ( `ArrivalEventID` int NOT NULL DEFAULT '0', `DepartureEventID` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.taxipathnode_dbc: 0 rows DELETE FROM `taxipathnode_dbc`; diff --git a/data/sql/base/db_world/teamcontributionpoints_dbc.sql b/data/sql/base/db_world/teamcontributionpoints_dbc.sql index ec21d8bb9..73ac27d8f 100644 --- a/data/sql/base/db_world/teamcontributionpoints_dbc.sql +++ b/data/sql/base/db_world/teamcontributionpoints_dbc.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `teamcontributionpoints_dbc` ( `ID` int NOT NULL DEFAULT '0', `Data` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.teamcontributionpoints_dbc: 0 rows DELETE FROM `teamcontributionpoints_dbc`; diff --git a/data/sql/base/db_world/totemcategory_dbc.sql b/data/sql/base/db_world/totemcategory_dbc.sql index 0397ccec3..e6b940498 100644 --- a/data/sql/base/db_world/totemcategory_dbc.sql +++ b/data/sql/base/db_world/totemcategory_dbc.sql @@ -38,7 +38,7 @@ CREATE TABLE IF NOT EXISTS `totemcategory_dbc` ( `TotemCategoryType` int NOT NULL DEFAULT '0', `TotemCategoryMask` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.totemcategory_dbc: 0 rows DELETE FROM `totemcategory_dbc`; diff --git a/data/sql/base/db_world/transportanimation_dbc.sql b/data/sql/base/db_world/transportanimation_dbc.sql index bb5b792d0..f348d2993 100644 --- a/data/sql/base/db_world/transportanimation_dbc.sql +++ b/data/sql/base/db_world/transportanimation_dbc.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `transportanimation_dbc` ( `PosZ` float NOT NULL DEFAULT '0', `SequenceID` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.transportanimation_dbc: 0 rows DELETE FROM `transportanimation_dbc`; diff --git a/data/sql/base/db_world/transportrotation_dbc.sql b/data/sql/base/db_world/transportrotation_dbc.sql index 4955a2f6e..7442ffaaa 100644 --- a/data/sql/base/db_world/transportrotation_dbc.sql +++ b/data/sql/base/db_world/transportrotation_dbc.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `transportrotation_dbc` ( `RotZ` float NOT NULL DEFAULT '0', `RotW` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.transportrotation_dbc: 0 rows DELETE FROM `transportrotation_dbc`; diff --git a/data/sql/base/db_world/transports.sql b/data/sql/base/db_world/transports.sql index 5aa546345..015472e48 100644 --- a/data/sql/base/db_world/transports.sql +++ b/data/sql/base/db_world/transports.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `transports` ( `ScriptName` char(64) NOT NULL DEFAULT '', PRIMARY KEY (`guid`), UNIQUE KEY `idx_entry` (`entry`) -) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Transports'; +) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Transports'; -- Dumping data for table acore_world.transports: 20 rows DELETE FROM `transports`; diff --git a/data/sql/base/db_world/updates.sql b/data/sql/base/db_world/updates.sql index 8d88b9d3e..3c156c2b3 100644 --- a/data/sql/base/db_world/updates.sql +++ b/data/sql/base/db_world/updates.sql @@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `updates` ( `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'timestamp when the query was applied.', `speed` int unsigned NOT NULL DEFAULT '0' COMMENT 'time the query takes to apply in ms.', PRIMARY KEY (`name`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='List of all applied updates in this database.'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='List of all applied updates in this database.'; -- Dumping data for table acore_world.updates: 3,654 rows DELETE FROM `updates`; diff --git a/data/sql/base/db_world/updates_include.sql b/data/sql/base/db_world/updates_include.sql index 74cfd3f0d..c499effa9 100644 --- a/data/sql/base/db_world/updates_include.sql +++ b/data/sql/base/db_world/updates_include.sql @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `updates_include` ( `path` varchar(200) NOT NULL COMMENT 'directory to include. $ means relative to the source directory.', `state` enum('RELEASED','ARCHIVED','CUSTOM') NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.', PRIMARY KEY (`path`) USING BTREE -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='List of directories where we want to include sql updates.'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='List of directories where we want to include sql updates.'; -- Dumping data for table acore_world.updates_include: 3 rows DELETE FROM `updates_include`; diff --git a/data/sql/base/db_world/vehicle_accessory.sql b/data/sql/base/db_world/vehicle_accessory.sql index 33c0b7244..2f1b1915c 100644 --- a/data/sql/base/db_world/vehicle_accessory.sql +++ b/data/sql/base/db_world/vehicle_accessory.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `vehicle_accessory` ( `summontype` tinyint unsigned NOT NULL DEFAULT '6' COMMENT 'see enum TempSummonType', `summontimer` int unsigned NOT NULL DEFAULT '30000' COMMENT 'timer, only relevant for certain summontypes', PRIMARY KEY (`guid`,`seat_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.vehicle_accessory: 0 rows DELETE FROM `vehicle_accessory`; diff --git a/data/sql/base/db_world/vehicle_dbc.sql b/data/sql/base/db_world/vehicle_dbc.sql index 68fd618e0..8314b0ad2 100644 --- a/data/sql/base/db_world/vehicle_dbc.sql +++ b/data/sql/base/db_world/vehicle_dbc.sql @@ -58,7 +58,7 @@ CREATE TABLE IF NOT EXISTS `vehicle_dbc` ( `PowerDisplayID_2` int NOT NULL DEFAULT '0', `PowerDisplayID_3` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.vehicle_dbc: 0 rows DELETE FROM `vehicle_dbc`; diff --git a/data/sql/base/db_world/vehicle_template_accessory.sql b/data/sql/base/db_world/vehicle_template_accessory.sql index 2547bbd8f..fbd7e7afb 100644 --- a/data/sql/base/db_world/vehicle_template_accessory.sql +++ b/data/sql/base/db_world/vehicle_template_accessory.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `vehicle_template_accessory` ( `summontype` tinyint unsigned NOT NULL DEFAULT '6' COMMENT 'see enum TempSummonType', `summontimer` int unsigned NOT NULL DEFAULT '30000' COMMENT 'timer, only relevant for certain summontypes', PRIMARY KEY (`entry`,`seat_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED; -- Dumping data for table acore_world.vehicle_template_accessory: 193 rows DELETE FROM `vehicle_template_accessory`; diff --git a/data/sql/base/db_world/vehicleseat_dbc.sql b/data/sql/base/db_world/vehicleseat_dbc.sql index 3e6b02395..28bb623c0 100644 --- a/data/sql/base/db_world/vehicleseat_dbc.sql +++ b/data/sql/base/db_world/vehicleseat_dbc.sql @@ -76,7 +76,7 @@ CREATE TABLE IF NOT EXISTS `vehicleseat_dbc` ( `CameraSeatZoomMin` float NOT NULL DEFAULT '0', `CameraSeatZoomMax` float NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.vehicleseat_dbc: 0 rows DELETE FROM `vehicleseat_dbc`; diff --git a/data/sql/base/db_world/version.sql b/data/sql/base/db_world/version.sql index 95874ae86..764745841 100644 --- a/data/sql/base/db_world/version.sql +++ b/data/sql/base/db_world/version.sql @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `version` ( `db_version` varchar(120) DEFAULT NULL COMMENT 'Version of world DB.', `cache_id` int DEFAULT '0', PRIMARY KEY (`core_version`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Version Notes'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Version Notes'; -- Dumping data for table acore_world.version: ~0 rows (approximately) DELETE FROM `version`; diff --git a/data/sql/base/db_world/warden_checks.sql b/data/sql/base/db_world/warden_checks.sql index e0766530c..82519d4ff 100644 --- a/data/sql/base/db_world/warden_checks.sql +++ b/data/sql/base/db_world/warden_checks.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `warden_checks` ( `result` varchar(24) DEFAULT NULL, `comment` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=795 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM AUTO_INCREMENT=795 DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.warden_checks: 793 rows DELETE FROM `warden_checks`; diff --git a/data/sql/base/db_world/waypoint_data.sql b/data/sql/base/db_world/waypoint_data.sql index c075d559a..0a8b663dd 100644 --- a/data/sql/base/db_world/waypoint_data.sql +++ b/data/sql/base/db_world/waypoint_data.sql @@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `waypoint_data` ( `action_chance` smallint NOT NULL DEFAULT '100', `wpguid` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`,`point`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.waypoint_data: 135,917 rows DELETE FROM `waypoint_data`; diff --git a/data/sql/base/db_world/waypoint_scripts.sql b/data/sql/base/db_world/waypoint_scripts.sql index 9e623fee4..ab6e89794 100644 --- a/data/sql/base/db_world/waypoint_scripts.sql +++ b/data/sql/base/db_world/waypoint_scripts.sql @@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `waypoint_scripts` ( `o` float NOT NULL DEFAULT '0', `guid` int NOT NULL DEFAULT '0', PRIMARY KEY (`guid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.waypoint_scripts: 589 rows DELETE FROM `waypoint_scripts`; diff --git a/data/sql/base/db_world/waypoints.sql b/data/sql/base/db_world/waypoints.sql index abb36290e..b8be2ef43 100644 --- a/data/sql/base/db_world/waypoints.sql +++ b/data/sql/base/db_world/waypoints.sql @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `waypoints` ( `delay` int unsigned NOT NULL DEFAULT '0', `point_comment` text, PRIMARY KEY (`entry`,`pointid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=FIXED COMMENT='Creature waypoints'; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=FIXED COMMENT='Creature waypoints'; -- Dumping data for table acore_world.waypoints: 12,560 rows DELETE FROM `waypoints`; diff --git a/data/sql/base/db_world/wmoareatable_dbc.sql b/data/sql/base/db_world/wmoareatable_dbc.sql index 9b4738af1..085231908 100644 --- a/data/sql/base/db_world/wmoareatable_dbc.sql +++ b/data/sql/base/db_world/wmoareatable_dbc.sql @@ -46,7 +46,7 @@ CREATE TABLE IF NOT EXISTS `wmoareatable_dbc` ( `AreaName_Lang_Unk` varchar(100) DEFAULT NULL, `AreaName_Lang_Mask` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.wmoareatable_dbc: 0 rows DELETE FROM `wmoareatable_dbc`; diff --git a/data/sql/base/db_world/worldmaparea_dbc.sql b/data/sql/base/db_world/worldmaparea_dbc.sql index 21842853d..854afa1dc 100644 --- a/data/sql/base/db_world/worldmaparea_dbc.sql +++ b/data/sql/base/db_world/worldmaparea_dbc.sql @@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `worldmaparea_dbc` ( `DefaultDungeonFloor` int NOT NULL DEFAULT '0', `ParentWorldMapID` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.worldmaparea_dbc: 0 rows DELETE FROM `worldmaparea_dbc`; diff --git a/data/sql/base/db_world/worldmapoverlay_dbc.sql b/data/sql/base/db_world/worldmapoverlay_dbc.sql index e167557fb..2619f5ecb 100644 --- a/data/sql/base/db_world/worldmapoverlay_dbc.sql +++ b/data/sql/base/db_world/worldmapoverlay_dbc.sql @@ -35,7 +35,7 @@ CREATE TABLE IF NOT EXISTS `worldmapoverlay_dbc` ( `HitRectBottom` int NOT NULL DEFAULT '0', `HitRectRight` int NOT NULL DEFAULT '0', PRIMARY KEY (`ID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; -- Dumping data for table acore_world.worldmapoverlay_dbc: 0 rows DELETE FROM `worldmapoverlay_dbc`;