From 5cf8bb66e38dedd584b829d85361b697b930d87a Mon Sep 17 00:00:00 2001 From: AzerothCoreBot Date: Thu, 28 Oct 2021 16:10:02 +0000 Subject: [PATCH] chore(DB): import pending files Referenced commit(s): 12b195e1165f392fc144535afee11b8c4dec0576 --- .../2021_10_28_01.sql} | 26 +++++++++++++++++++ .../2021_10_28_02.sql} | 26 +++++++++++++++++++ .../2021_10_28_03.sql} | 26 +++++++++++++++++++ .../2021_10_28_04.sql} | 26 +++++++++++++++++++ .../2021_10_28_05.sql} | 26 +++++++++++++++++++ 5 files changed, 130 insertions(+) rename data/sql/updates/{pending_db_world/rev_1625408455420649354.sql => db_world/2021_10_28_01.sql} (82%) rename data/sql/updates/{pending_db_world/rev_1626440153363170757.sql => db_world/2021_10_28_02.sql} (96%) rename data/sql/updates/{pending_db_world/rev_1631173309078216738.sql => db_world/2021_10_28_03.sql} (92%) rename data/sql/updates/{pending_db_world/rev_1631371074636591511.sql => db_world/2021_10_28_04.sql} (88%) rename data/sql/updates/{pending_db_world/rev_1634741438848895794.sql => db_world/2021_10_28_05.sql} (66%) diff --git a/data/sql/updates/pending_db_world/rev_1625408455420649354.sql b/data/sql/updates/db_world/2021_10_28_01.sql similarity index 82% rename from data/sql/updates/pending_db_world/rev_1625408455420649354.sql rename to data/sql/updates/db_world/2021_10_28_01.sql index 443001ce5..3fb04dc4d 100644 --- a/data/sql/updates/pending_db_world/rev_1625408455420649354.sql +++ b/data/sql/updates/db_world/2021_10_28_01.sql @@ -1,3 +1,19 @@ +-- DB update 2021_10_28_00 -> 2021_10_28_01 +DROP PROCEDURE IF EXISTS `updateDb`; +DELIMITER // +CREATE PROCEDURE updateDb () +proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE'; +SELECT COUNT(*) INTO @COLEXISTS +FROM information_schema.COLUMNS +WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_world' AND COLUMN_NAME = '2021_10_28_00'; +IF @COLEXISTS = 0 THEN LEAVE proc; END IF; +START TRANSACTION; +ALTER TABLE version_db_world CHANGE COLUMN 2021_10_28_00 2021_10_28_01 bit; +SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1625408455420649354'; IF OK <> 'FALSE' THEN LEAVE proc; END IF; +-- +-- START UPDATING QUERIES +-- + INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1625408455420649354'); -- Artorius the Amiable @@ -74,3 +90,13 @@ INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Lan -- Correct Artorius evil entry speed_walk UPDATE `creature_template` SET `speed_walk` = 1 WHERE (`entry` = 14535); + +-- +-- END UPDATING QUERIES +-- +UPDATE version_db_world SET date = '2021_10_28_01' WHERE sql_rev = '1625408455420649354'; +COMMIT; +END // +DELIMITER ; +CALL updateDb(); +DROP PROCEDURE IF EXISTS `updateDb`; diff --git a/data/sql/updates/pending_db_world/rev_1626440153363170757.sql b/data/sql/updates/db_world/2021_10_28_02.sql similarity index 96% rename from data/sql/updates/pending_db_world/rev_1626440153363170757.sql rename to data/sql/updates/db_world/2021_10_28_02.sql index 1bd1c44c3..b8433a5a9 100644 --- a/data/sql/updates/pending_db_world/rev_1626440153363170757.sql +++ b/data/sql/updates/db_world/2021_10_28_02.sql @@ -1,3 +1,19 @@ +-- DB update 2021_10_28_01 -> 2021_10_28_02 +DROP PROCEDURE IF EXISTS `updateDb`; +DELIMITER // +CREATE PROCEDURE updateDb () +proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE'; +SELECT COUNT(*) INTO @COLEXISTS +FROM information_schema.COLUMNS +WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_world' AND COLUMN_NAME = '2021_10_28_01'; +IF @COLEXISTS = 0 THEN LEAVE proc; END IF; +START TRANSACTION; +ALTER TABLE version_db_world CHANGE COLUMN 2021_10_28_01 2021_10_28_02 bit; +SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1626440153363170757'; IF OK <> 'FALSE' THEN LEAVE proc; END IF; +-- +-- START UPDATING QUERIES +-- + INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1626440153363170757'); -- -- Simone the Inconspicuous @@ -406,3 +422,13 @@ UPDATE `creature_template` SET `speed_walk` = 1 WHERE (`entry` = 14538); INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES (@SIMONE_GUID, @SIMONE_GUID, 0, 0, 515, 0, 0), (@SIMONE_GUID, @PRECIOUS_GUID, 5, 180, 515, 0, 0); + +-- +-- END UPDATING QUERIES +-- +UPDATE version_db_world SET date = '2021_10_28_02' WHERE sql_rev = '1626440153363170757'; +COMMIT; +END // +DELIMITER ; +CALL updateDb(); +DROP PROCEDURE IF EXISTS `updateDb`; diff --git a/data/sql/updates/pending_db_world/rev_1631173309078216738.sql b/data/sql/updates/db_world/2021_10_28_03.sql similarity index 92% rename from data/sql/updates/pending_db_world/rev_1631173309078216738.sql rename to data/sql/updates/db_world/2021_10_28_03.sql index d48e4d9da..e80b13f5f 100644 --- a/data/sql/updates/pending_db_world/rev_1631173309078216738.sql +++ b/data/sql/updates/db_world/2021_10_28_03.sql @@ -1,3 +1,19 @@ +-- DB update 2021_10_28_02 -> 2021_10_28_03 +DROP PROCEDURE IF EXISTS `updateDb`; +DELIMITER // +CREATE PROCEDURE updateDb () +proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE'; +SELECT COUNT(*) INTO @COLEXISTS +FROM information_schema.COLUMNS +WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_world' AND COLUMN_NAME = '2021_10_28_02'; +IF @COLEXISTS = 0 THEN LEAVE proc; END IF; +START TRANSACTION; +ALTER TABLE version_db_world CHANGE COLUMN 2021_10_28_02 2021_10_28_03 bit; +SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1631173309078216738'; IF OK <> 'FALSE' THEN LEAVE proc; END IF; +-- +-- START UPDATING QUERIES +-- + INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1631173309078216738'); -- -- Nelson the Nice @@ -104,3 +120,13 @@ WHERE `entry` = 14761; INSERT IGNORE INTO spell_dbc (`ID`,`Category`,`DispelType`,`Mechanic`,`Attributes`,`AttributesEx`,`AttributesEx2`,`AttributesEx3`,`AttributesEx4`,`AttributesEx5`,`AttributesEx6`,`AttributesEx7`,`ShapeshiftMask`,`unk_320_2`,`ShapeshiftExclude`,`unk_320_3`,`Targets`,`TargetCreatureType`,`RequiresSpellFocus`,`FacingCasterFlags`,`CasterAuraState`,`TargetAuraState`,`ExcludeCasterAuraState`,`ExcludeTargetAuraState`,`CasterAuraSpell`,`TargetAuraSpell`,`ExcludeCasterAuraSpell`,`ExcludeTargetAuraSpell`,`CastingTimeIndex`,`RecoveryTime`,`CategoryRecoveryTime`,`InterruptFlags`,`AuraInterruptFlags`,`ChannelInterruptFlags`,`ProcTypeMask`,`ProcChance`,`ProcCharges`,`MaxLevel`,`BaseLevel`,`SpellLevel`,`DurationIndex`,`PowerType`,`ManaCost`,`ManaCostPerLevel`,`ManaPerSecond`,`ManaPerSecondPerLevel`,`RangeIndex`,`Speed`,`ModalNextSpell`,`CumulativeAura`,`Totem_1`,`Totem_2`,`Reagent_1`,`Reagent_2`,`Reagent_3`,`Reagent_4`,`Reagent_5`,`Reagent_6`,`Reagent_7`,`Reagent_8`,`ReagentCount_1`,`ReagentCount_2`,`ReagentCount_3`,`ReagentCount_4`,`ReagentCount_5`,`ReagentCount_6`,`ReagentCount_7`,`ReagentCount_8`,`EquippedItemClass`,`EquippedItemSubclass`,`EquippedItemInvTypes`,`Effect_1`,`Effect_2`,`Effect_3`,`EffectDieSides_1`,`EffectDieSides_2`,`EffectDieSides_3`,`EffectRealPointsPerLevel_1`,`EffectRealPointsPerLevel_2`,`EffectRealPointsPerLevel_3`,`EffectBasePoints_1`,`EffectBasePoints_2`,`EffectBasePoints_3`,`EffectMechanic_1`,`EffectMechanic_2`,`EffectMechanic_3`,`ImplicitTargetA_1`,`ImplicitTargetA_2`,`ImplicitTargetA_3`,`ImplicitTargetB_1`,`ImplicitTargetB_2`,`ImplicitTargetB_3`,`EffectRadiusIndex_1`,`EffectRadiusIndex_2`,`EffectRadiusIndex_3`,`EffectAura_1`,`EffectAura_2`,`EffectAura_3`,`EffectAuraPeriod_1`,`EffectAuraPeriod_2`,`EffectAuraPeriod_3`,`EffectMultipleValue_1`,`EffectMultipleValue_2`,`EffectMultipleValue_3`,`EffectChainTargets_1`,`EffectChainTargets_2`,`EffectChainTargets_3`,`EffectItemType_1`,`EffectItemType_2`,`EffectItemType_3`,`EffectMiscValue_1`,`EffectMiscValue_2`,`EffectMiscValue_3`,`EffectMiscValueB_1`,`EffectMiscValueB_2`,`EffectMiscValueB_3`,`EffectTriggerSpell_1`,`EffectTriggerSpell_2`,`EffectTriggerSpell_3`,`EffectPointsPerCombo_1`,`EffectPointsPerCombo_2`,`EffectPointsPerCombo_3`,`EffectSpellClassMaskA_1`,`EffectSpellClassMaskA_2`,`EffectSpellClassMaskA_3`,`EffectSpellClassMaskB_1`,`EffectSpellClassMaskB_2`,`EffectSpellClassMaskB_3`,`EffectSpellClassMaskC_1`,`EffectSpellClassMaskC_2`,`EffectSpellClassMaskC_3`,`SpellVisualID_1`,`SpellVisualID_2`,`SpellIconID`,`ActiveIconID`,`SpellPriority`,`Name_Lang_enUS`,`Name_Lang_enGB`,`Name_Lang_koKR`,`Name_Lang_frFR`,`Name_Lang_deDE`,`Name_Lang_enCN`,`Name_Lang_zhCN`,`Name_Lang_enTW`,`Name_Lang_zhTW`,`Name_Lang_esES`,`Name_Lang_esMX`,`Name_Lang_ruRU`,`Name_Lang_ptPT`,`Name_Lang_ptBR`,`Name_Lang_itIT`,`Name_Lang_Unk`,`Name_Lang_Mask`,`NameSubtext_Lang_enUS`,`NameSubtext_Lang_enGB`,`NameSubtext_Lang_koKR`,`NameSubtext_Lang_frFR`,`NameSubtext_Lang_deDE`,`NameSubtext_Lang_enCN`,`NameSubtext_Lang_zhCN`,`NameSubtext_Lang_enTW`,`NameSubtext_Lang_zhTW`,`NameSubtext_Lang_esES`,`NameSubtext_Lang_esMX`,`NameSubtext_Lang_ruRU`,`NameSubtext_Lang_ptPT`,`NameSubtext_Lang_ptBR`,`NameSubtext_Lang_itIT`,`NameSubtext_Lang_Unk`,`NameSubtext_Lang_Mask`,`Description_Lang_enUS`,`Description_Lang_enGB`,`Description_Lang_koKR`,`Description_Lang_frFR`,`Description_Lang_deDE`,`Description_Lang_enCN`,`Description_Lang_zhCN`,`Description_Lang_enTW`,`Description_Lang_zhTW`,`Description_Lang_esES`,`Description_Lang_esMX`,`Description_Lang_ruRU`,`Description_Lang_ptPT`,`Description_Lang_ptBR`,`Description_Lang_itIT`,`Description_Lang_Unk`,`Description_Lang_Mask`,`AuraDescription_Lang_enUS`,`AuraDescription_Lang_enGB`,`AuraDescription_Lang_koKR`,`AuraDescription_Lang_frFR`,`AuraDescription_Lang_deDE`,`AuraDescription_Lang_enCN`,`AuraDescription_Lang_zhCN`,`AuraDescription_Lang_enTW`,`AuraDescription_Lang_zhTW`,`AuraDescription_Lang_esES`,`AuraDescription_Lang_esMX`,`AuraDescription_Lang_ruRU`,`AuraDescription_Lang_ptPT`,`AuraDescription_Lang_ptBR`,`AuraDescription_Lang_itIT`,`AuraDescription_Lang_Unk`,`AuraDescription_Lang_Mask`,`ManaCostPct`,`StartRecoveryCategory`,`StartRecoveryTime`,`MaxTargetLevel`,`SpellClassSet`,`SpellClassMask_1`,`SpellClassMask_2`,`SpellClassMask_3`,`MaxTargets`,`DefenseType`,`PreventionType`,`StanceBarOrder`,`EffectChainAmplitude_1`,`EffectChainAmplitude_2`,`EffectChainAmplitude_3`,`MinFactionID`,`MinReputation`,`RequiredAuraVision`,`RequiredTotemCategoryID_1`,`RequiredTotemCategoryID_2`,`RequiredAreasID`,`SchoolMask`,`RuneCostID`,`SpellMissileID`,`PowerDisplayID`,`Field227`,`Field228`,`Field229`,`SpellDescriptionVariableID`,`SpellDifficultyID`) VALUES (23272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,101,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,6,6,46,91,1,0,0,0,0,554,99,0,0,0,0,1,1,0,0,0,0,0,0,0,15,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6803,0,937,0,0,'Soul Flame','','','','','','','','','','','','','','','',16712190,'','','','','','','','','','','','','','','','',16712172,'','','','','','','','','','','','','','','','',16712188,'','','','','','','','','','','','','','','','',16712188,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0); UPDATE `spell_dbc` SET `ImplicitTargetA_3` = 1 WHERE ID = 23272; + +-- +-- END UPDATING QUERIES +-- +UPDATE version_db_world SET date = '2021_10_28_03' WHERE sql_rev = '1631173309078216738'; +COMMIT; +END // +DELIMITER ; +CALL updateDb(); +DROP PROCEDURE IF EXISTS `updateDb`; diff --git a/data/sql/updates/pending_db_world/rev_1631371074636591511.sql b/data/sql/updates/db_world/2021_10_28_04.sql similarity index 88% rename from data/sql/updates/pending_db_world/rev_1631371074636591511.sql rename to data/sql/updates/db_world/2021_10_28_04.sql index 802bec47a..6dab4fd31 100644 --- a/data/sql/updates/pending_db_world/rev_1631371074636591511.sql +++ b/data/sql/updates/db_world/2021_10_28_04.sql @@ -1,3 +1,19 @@ +-- DB update 2021_10_28_03 -> 2021_10_28_04 +DROP PROCEDURE IF EXISTS `updateDb`; +DELIMITER // +CREATE PROCEDURE updateDb () +proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE'; +SELECT COUNT(*) INTO @COLEXISTS +FROM information_schema.COLUMNS +WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_world' AND COLUMN_NAME = '2021_10_28_03'; +IF @COLEXISTS = 0 THEN LEAVE proc; END IF; +START TRANSACTION; +ALTER TABLE version_db_world CHANGE COLUMN 2021_10_28_03 2021_10_28_04 bit; +SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1631371074636591511'; IF OK <> 'FALSE' THEN LEAVE proc; END IF; +-- +-- START UPDATING QUERIES +-- + INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1631371074636591511'); -- -- Franklin the Friendly @@ -115,3 +131,13 @@ INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Lan -- Correct Franklin evil entry(Klinfran the Crazed) speed_walk UPDATE `creature_template` SET `speed_walk` = 1 WHERE (`entry` = 14534); + +-- +-- END UPDATING QUERIES +-- +UPDATE version_db_world SET date = '2021_10_28_04' WHERE sql_rev = '1631371074636591511'; +COMMIT; +END // +DELIMITER ; +CALL updateDb(); +DROP PROCEDURE IF EXISTS `updateDb`; diff --git a/data/sql/updates/pending_db_world/rev_1634741438848895794.sql b/data/sql/updates/db_world/2021_10_28_05.sql similarity index 66% rename from data/sql/updates/pending_db_world/rev_1634741438848895794.sql rename to data/sql/updates/db_world/2021_10_28_05.sql index 3c15fc56c..f3734a03d 100644 --- a/data/sql/updates/pending_db_world/rev_1634741438848895794.sql +++ b/data/sql/updates/db_world/2021_10_28_05.sql @@ -1,3 +1,19 @@ +-- DB update 2021_10_28_04 -> 2021_10_28_05 +DROP PROCEDURE IF EXISTS `updateDb`; +DELIMITER // +CREATE PROCEDURE updateDb () +proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE'; +SELECT COUNT(*) INTO @COLEXISTS +FROM information_schema.COLUMNS +WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_world' AND COLUMN_NAME = '2021_10_28_04'; +IF @COLEXISTS = 0 THEN LEAVE proc; END IF; +START TRANSACTION; +ALTER TABLE version_db_world CHANGE COLUMN 2021_10_28_04 2021_10_28_05 bit; +SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1634741438848895794'; IF OK <> 'FALSE' THEN LEAVE proc; END IF; +-- +-- START UPDATING QUERIES +-- + INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1634741438848895794'); SET @SIMONE_MENUID := 5868; @@ -26,3 +42,13 @@ UPDATE `creature_template` SET `gossip_menu_id` = @NELSON_MENUID WHERE (`entry` -- Delete the unneeded/unused creature texts DELETE FROM `creature_text` WHERE `CreatureID` IN (14527, 14529, 14531, 14536); + +-- +-- END UPDATING QUERIES +-- +UPDATE version_db_world SET date = '2021_10_28_05' WHERE sql_rev = '1634741438848895794'; +COMMIT; +END // +DELIMITER ; +CALL updateDb(); +DROP PROCEDURE IF EXISTS `updateDb`;