mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +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
331 B
SQL
7 lines
331 B
SQL
ALTER TABLE character_db_version CHANGE COLUMN required_10312_02_characters_pet_aura required_10332_01_characters_character_aura bit;
|
|
|
|
ALTER TABLE `character_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`);
|
|
|