[10051] Fixed talent 58426 broken after 3.3.3 switch.
[getmangos.git] / sql / updates / 09974_01_characters_group.sql
blob9bdc5ada8aa1e78842b9bc3aec2707550cffc6a9
1 ALTER TABLE character_db_version CHANGE COLUMN required_9849_01_characters_saved_variables required_9974_01_characters_group bit;
3 ALTER TABLE groups
4   CHANGE COLUMN isRaid groupType tinyint(1) unsigned NOT NULL;
6 /* now fixed bug in past can save raids as 1 (BG group) */
7 UPDATE groups
8   SET groupType = 2 WHERE groupType = 1;