move global cuFlags left by 24b. They were unique to achievements but should be applicable to all types

This commit is contained in:
Sarjuuk
2013-06-19 22:29:21 +02:00
parent 08f4d84b6d
commit 88bfae9c0a
2 changed files with 77 additions and 20 deletions

View File

@@ -0,0 +1,2 @@
ALTER TABLE `aowow_achievement` MODIFY COLUMN `cuFlags` int(32) NOT NULL COMMENT 'see defines.php' AFTER `rewardIds`;
UPDATE aowow_achievement SET `cuFlags` = `cuFlags` << 24 WHERE `cuFlags` & 0xFF;