mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 01:37:02 +00:00
This must fix another way duplicate aura adding to DB error. It also prevent wrong stacking work for weapon equip bufs in cases when its allowed for both wepoan indepndently apply.
7 lines
325 B
SQL
7 lines
325 B
SQL
ALTER TABLE character_db_version CHANGE COLUMN required_10332_01_characters_character_aura required_10332_02_characters_pet_aura bit;
|
|
|
|
ALTER TABLE `pet_aura`
|
|
ADD COLUMN `item_guid` int(11) unsigned NOT NULL default '0' AFTER `caster_guid`,
|
|
DROP PRIMARY KEY,
|
|
ADD PRIMARY KEY (`guid`,`caster_guid`,`item_guid`,`spell`);
|
|
|