mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
Old version break stored action spell ids, but this is not critical damage so restore data at applied damage not done in fix. But it will fix errors at new characters creating. Signed-off-by: VladimirMangos <vladimir@getmangos.com>
10 lines
352 B
SQL
10 lines
352 B
SQL
ALTER TABLE character_db_version CHANGE COLUMN required_8072_02_characters_characters required_8098_01_characters_character_action bit;
|
|
|
|
ALTER TABLE character_action
|
|
CHANGE COLUMN action action int(11) unsigned NOT NULL default '0';
|
|
|
|
UPDATE character_action
|
|
SET action = action | ( misc << 16 );
|
|
|
|
ALTER TABLE character_action
|
|
DROP COLUMN misc;
|