server/sql/updates/9974_01_characters_group.sql
VladimirMangos 94888e52cd [9974] Restore raid functionality broken after one from 3.3.x switches.
* Fixed typo in raid converting code that triggering raid disband at server restart.
* Fixed current subgroup show for character and update group memebers data at move its
  in diff subgroups.
2010-05-26 00:27:07 +04:00

8 lines
No EOL
327 B
SQL

ALTER TABLE character_db_version CHANGE COLUMN required_9849_01_characters_saved_variables required_9974_01_characters_group bit;
ALTER TABLE groups
CHANGE COLUMN isRaid groupType tinyint(1) unsigned NOT NULL;
/* now fixed bug in past can save raids as 1 (BG group) */
UPDATE groups
SET groupType = 2 WHERE groupType = 1;