diff --git a/sql/updates/8589_05_mangos_battleground_template.sql b/sql/updates/8589_05_mangos_battleground_template.sql index 514e5d3a3..2310d6d82 100644 --- a/sql/updates/8589_05_mangos_battleground_template.sql +++ b/sql/updates/8589_05_mangos_battleground_template.sql @@ -1,4 +1,5 @@ ALTER TABLE db_version CHANGE COLUMN required_8589_03_mangos_item_template required_8589_05_mangos_battleground_template bit; +delete from battleground_template where id in(30, 32); insert into `battleground_template`(`id`,`MinPlayersPerTeam`,`MaxPlayersPerTeam`,`MinLvl`,`MaxLvl`,`AllianceStartLoc`,`AllianceStartO`,`HordeStartLoc`,`HordeStartO`) values (30,20,40,71,80,1485,0,1486,0); insert into `battleground_template`(`id`,`MinPlayersPerTeam`,`MaxPlayersPerTeam`,`MinLvl`,`MaxLvl`,`AllianceStartLoc`,`AllianceStartO`,`HordeStartLoc`,`HordeStartO`) values (32,0,40,0,80,0,0,0,0); diff --git a/sql/updates/8589_06_characters_bugreport.sql b/sql/updates/8589_06_characters_bugreport.sql index 801c16c0c..86bbf45b8 100644 --- a/sql/updates/8589_06_characters_bugreport.sql +++ b/sql/updates/8589_06_characters_bugreport.sql @@ -1,5 +1,4 @@ ALTER TABLE character_db_version CHANGE COLUMN required_8589_04_characters_groups required_8589_06_characters_bugreport bit; -alter table `characters`.`bugreport` - change `type` `type` longtext NOT NULL, - change `content` `content` longtext NOT NULL; +ALTER TABLE `bugreport` CHANGE `content` `content` LONGTEXT; +ALTER TABLE `bugreport` CHANGE `type` `type` LONGTEXT; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index ea548f716..441aa83b4 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "8594" + #define REVISION_NR "8595" #endif // __REVISION_NR_H__