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
This commit is contained in:
Barbz
2020-04-02 20:45:00 +02:00
committed by GitHub
parent cfdbf00afe
commit 9d0ebcd8ea

View File

@@ -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';