DB: Convert all databases to InnoDB engine

This commit is contained in:
Shauren
2021-12-31 16:01:43 +01:00
parent 2565af5fd3
commit 8eb1938fe8
7 changed files with 229 additions and 6 deletions

View File

@@ -2281,7 +2281,7 @@ CREATE TABLE `updates` (
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'timestamp when the query was applied.',
`speed` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'time the query takes to apply in ms.',
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of all applied updates in this database.';
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of all applied updates in this database.';
/*!40101 SET character_set_client = @saved_cs_client */;
--
@@ -2521,7 +2521,8 @@ INSERT INTO `updates` VALUES
('2021_12_04_00_auth.sql','00C4A37A60F53A5E893CAADAC882E5A28375A4D2','RELEASED','2021-12-04 12:49:04',0),
('2021_12_08_00_auth.sql','9B1A7C86F56159CA50A45B9CB4BC6422A3378231','RELEASED','2021-12-08 00:28:19',0),
('2021_12_16_00_auth.sql','EF5050D779CC6CEAAFB4C7E0CFA26824D92B675E','RELEASED','2021-12-16 12:21:11',0),
('2021_12_31_00_auth.sql','1C79640D7A4626EACE1FCE2192206595ADF34CA0','RELEASED','2021-12-31 13:23:04',0);
('2021_12_31_00_auth.sql','1C79640D7A4626EACE1FCE2192206595ADF34CA0','RELEASED','2021-12-31 13:23:04',0),
('2021_12_31_01_auth.sql','336E62A8850A3E78A1D0BD3E81FFD5769184BDF8','RELEASED','2021-12-31 15:58:32',0);
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
UNLOCK TABLES;
@@ -2536,7 +2537,7 @@ CREATE TABLE `updates_include` (
`path` varchar(200) NOT NULL COMMENT 'directory to include. $ means relative to the source directory.',
`state` enum('RELEASED','ARCHIVED') NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
PRIMARY KEY (`path`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of directories where we want to include sql updates.';
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of directories where we want to include sql updates.';
/*!40101 SET character_set_client = @saved_cs_client */;
--

View File

@@ -3518,7 +3518,7 @@ CREATE TABLE `updates` (
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'timestamp when the query was applied.',
`speed` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'time the query takes to apply in ms.',
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of all applied updates in this database.';
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of all applied updates in this database.';
/*!40101 SET character_set_client = @saved_cs_client */;
--
@@ -3653,7 +3653,8 @@ INSERT INTO `updates` VALUES
('2021_12_16_00_characters_2019_07_14_00_characters.sql','DC1A3D3311FCF9106B4D91F8D2C5B893AD66C093','RELEASED','2021-12-16 01:06:53',0),
('2021_12_16_01_characters_2019_07_16_00_characters.sql','76AE193EFA3129FA1702BF7B6FA7C4127B543BDF','RELEASED','2021-12-16 20:16:25',0),
('2021_12_23_00_characters.sql','7F2BD7CA61CD28D74AD9CA9F06FD7E542837ED3F','RELEASED','2021-12-23 19:16:29',0),
('2021_13_31_00_characters.sql','7ECEEB66056C46F89E581ACBB5EC222CB2D8A365','RELEASED','2021-12-31 13:53:23',0);
('2021_12_31_00_characters.sql','7ECEEB66056C46F89E581ACBB5EC222CB2D8A365','RELEASED','2021-12-31 13:53:23',0),
('2021_12_31_01_characters.sql','336E62A8850A3E78A1D0BD3E81FFD5769184BDF8','RELEASED','2021-12-31 15:58:32',0);
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
UNLOCK TABLES;
@@ -3668,7 +3669,7 @@ CREATE TABLE `updates_include` (
`path` varchar(200) NOT NULL COMMENT 'directory to include. $ means relative to the source directory.',
`state` enum('RELEASED','ARCHIVED') NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
PRIMARY KEY (`path`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of directories where we want to include sql updates.';
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of directories where we want to include sql updates.';
/*!40101 SET character_set_client = @saved_cs_client */;
--

View File

@@ -0,0 +1,2 @@
ALTER TABLE updates ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE updates_include ENGINE=InnoDB ROW_FORMAT=DEFAULT;

View File

@@ -0,0 +1,2 @@
ALTER TABLE updates ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE updates_include ENGINE=InnoDB ROW_FORMAT=DEFAULT;

View File

@@ -0,0 +1,6 @@
ALTER TABLE creature ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_difficulty ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE hotfix_blob ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE hotfix_data ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE updates ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE updates_include ENGINE=InnoDB ROW_FORMAT=DEFAULT;

View File

@@ -0,0 +1,211 @@
ALTER TABLE achievement_reward_locale ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE areatrigger ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE areatrigger_create_properties ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE areatrigger_create_properties_polygon_vertex ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE areatrigger_create_properties_spline_point ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE areatrigger_involvedrelation ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE areatrigger_scripts ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE areatrigger_tavern ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE areatrigger_teleport ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE areatrigger_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE areatrigger_template_actions ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE battleground_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE battlemaster_entry ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE blackmarket_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE character_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE character_template_class ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE class_expansion_requirement ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE command ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE conditions ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE conversation_actors ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE conversation_line_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE conversation_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_addon ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_classlevelstats ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_equip_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_formations ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_loot_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_model_info ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_movement_override ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_onkill_reputation ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_questender ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_questitem ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_queststarter ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_summon_groups ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_template_addon ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_template_locale ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_template_model ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_template_movement ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_text ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_text_locale ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE creature_trainer ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE criteria_data ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE disables ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE disenchant_loot_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE event_scripts ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE exploration_basexp ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE fishing_loot_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_arena_seasons ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_battleground_holiday ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_condition ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_creature ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_creature_quest ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_gameobject ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_gameobject_quest ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_model_equip ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_npc_vendor ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_npcflag ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_pool ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_prerequisite ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_quest_condition ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_event_seasonal_questrelation ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_tele ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE game_weather ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gameobject ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gameobject_addon ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gameobject_loot_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gameobject_overrides ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gameobject_questender ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gameobject_questitem ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gameobject_queststarter ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gameobject_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gameobject_template_addon ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gameobject_template_locale ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE garrison_follower_class_spec_abilities ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE garrison_plot_finalize_info ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gossip_menu ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gossip_menu_option ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gossip_menu_option_action ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gossip_menu_option_box ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE gossip_menu_option_locale ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE graveyard_zone ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE guild_rewards ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE guild_rewards_req_achievements ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE instance_encounters ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE instance_spawn_groups ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE instance_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE item_loot_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE item_random_bonus_list_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE item_script_names ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE item_template_addon ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE jump_charge_params ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE lfg_dungeon_rewards ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE lfg_dungeon_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE linked_respawn ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE mail_level_reward ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE mail_loot_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE milling_loot_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE mount_definitions ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE npc_spellclick_spells ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE npc_text ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE npc_vendor ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE outdoorpvp_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE page_text ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE page_text_locale ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE pet_levelstats ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE pet_name_generation ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE phase_area ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE phase_name ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE pickpocketing_loot_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE player_classlevelstats ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE player_factionchange_achievement ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE player_factionchange_quests ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE player_factionchange_reputations ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE player_factionchange_spells ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE player_factionchange_titles ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE player_racestats ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE player_xp_for_level ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playerchoice ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playerchoice_locale ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playerchoice_response ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playerchoice_response_locale ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playerchoice_response_maw_power ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playerchoice_response_reward ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playerchoice_response_reward_currency ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playerchoice_response_reward_faction ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playerchoice_response_reward_item ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playerchoice_response_reward_item_choice ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playercreateinfo ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playercreateinfo_action ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playercreateinfo_cast_spell ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playercreateinfo_item ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE playercreateinfo_spell_custom ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE points_of_interest ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE points_of_interest_locale ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE pool_members ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE pool_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE prospecting_loot_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_details ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_greeting ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_greeting_locale ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_objectives ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_objectives_locale ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_offer_reward ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_poi ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_poi_points ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_pool_members ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_pool_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_request_items ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_reward_choice_items ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_reward_display_spell ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_template_addon ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_template_locale ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE quest_visual_effect ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE race_unlock_requirement ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE reference_loot_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE reputation_reward_rate ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE reputation_spillover_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE scenario_poi ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE scenario_poi_points ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE scenarios ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE scene_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE script_waypoint ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE serverside_spell ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE serverside_spell_effect ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE skill_discovery_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE skill_extra_item_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE skill_fishing_base_level ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE skill_perfect_item_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE skill_tiers ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE skinning_loot_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE smart_scripts ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spawn_group ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spawn_group_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_area ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_custom_attr ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_enchant_proc_data ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_group ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_group_stack_rules ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_learn_spell ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_linked_spell ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_loot_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_pet_auras ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_proc ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_required ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_script_names ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_scripts ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_target_position ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_threat ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE spell_totem_model ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE terrain_swap_defaults ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE terrain_worldmap ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE trainer ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE trainer_locale ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE trainer_spell ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE transports ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE trinity_string ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE updates ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE updates_include ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE vehicle_accessory ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE vehicle_template ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE vehicle_template_accessory ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE version ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE warden_checks ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE waypoint_data ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE waypoint_scripts ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE waypoints ENGINE=InnoDB ROW_FORMAT=DEFAULT;
ALTER TABLE world_safe_locs ENGINE=InnoDB ROW_FORMAT=DEFAULT;