From 9d0ebcd8ea3e14d78ef5d33a6ec12e1d3f632482 Mon Sep 17 00:00:00 2001 From: Barbz Date: Thu, 2 Apr 2020 20:45:00 +0200 Subject: [PATCH] style(DB): battelground_template entries now commented by type (arena or bg) (#2722) - Can be useful for people who don't know WOW by heart - Can be used to select only arenas or only battlegrounds - Added full name for Nagrand Arena --- .../rev_1582810463583691504.sql | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1582810463583691504.sql diff --git a/data/sql/updates/pending_db_world/rev_1582810463583691504.sql b/data/sql/updates/pending_db_world/rev_1582810463583691504.sql new file mode 100644 index 000000000..80fb0e237 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1582810463583691504.sql @@ -0,0 +1,18 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1582810463583691504'); + +ALTER TABLE `battleground_template` +CHANGE `Comment` `Comment` char(38) COLLATE 'utf8_general_ci' NOT NULL AFTER `ScriptName`; + +UPDATE `battleground_template` SET `Comment` = 'Alterac Valley (battleground)' WHERE `ID` = '1'; +UPDATE `battleground_template` SET `Comment` = 'Warsong Gulch (battleground)' WHERE `ID` = '2'; +UPDATE `battleground_template` SET `Comment` = 'Arathi Basin (battleground)' WHERE `ID` = '3'; +UPDATE `battleground_template` SET `Comment` = 'Nagrand Arena / Ring of Trials (arena)' WHERE `ID` = '4'; +UPDATE `battleground_template` SET `Comment` = 'Blades\'s Edge Arena (arena)' WHERE `ID` = '5'; +UPDATE `battleground_template` SET `Comment` = 'All Arenas (arena)' WHERE `ID` = '6'; +UPDATE `battleground_template` SET `Comment` = 'Eye of The Storm (battleground)' WHERE `ID` = '7'; +UPDATE `battleground_template` SET `Comment` = 'Ruins of Lordaeron (arena)' WHERE `ID` = '8'; +UPDATE `battleground_template` SET `Comment` = 'Strand of the Ancients (battleground)' WHERE `ID` = '9'; +UPDATE `battleground_template` SET `Comment` = 'Dalaran Sewers (arena)' WHERE `ID` = '10'; +UPDATE `battleground_template` SET `Comment` = 'The Ring of Valor (arena)' WHERE `ID` = '11'; +UPDATE `battleground_template` SET `Comment` = 'Isle of Conquest (battleground)' WHERE `ID` = '30'; +UPDATE `battleground_template` SET `Comment` = 'Random Battleground (battleground)' WHERE `ID` = '32';