mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
6 lines
257 B
SQL
6 lines
257 B
SQL
ALTER TABLE `pet_aura`
|
|
ADD `caster_guid` bigint(20) unsigned NOT NULL default '0' COMMENT 'Full Global Unique Identifier' AFTER `guid`,
|
|
ADD `amount` int(11) NOT NULL default '0' AFTER `effect_index`;
|
|
|
|
UPDATE `pet_aura`
|
|
SET `caster_guid` = `guid`;
|