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
359 B
SQL
10 lines
359 B
SQL
ALTER TABLE db_version CHANGE COLUMN required_8071_01_mangos_command required_8098_02_mangos_playercreateinfo_action bit;
|
|
|
|
ALTER TABLE playercreateinfo_action
|
|
CHANGE COLUMN action action int(11) unsigned NOT NULL default '0';
|
|
|
|
UPDATE playercreateinfo_action
|
|
SET action = action | ( misc << 16 );
|
|
|
|
ALTER TABLE playercreateinfo_action
|
|
DROP COLUMN misc;
|