mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
6 lines
238 B
SQL
6 lines
238 B
SQL
ALTER TABLE `pet_aura`
|
|
ADD `maxduration` int(11) NOT NULL default '0' AFTER `amount`,
|
|
ADD `remaincharges` int(11) NOT NULL default '0' AFTER `remaintime`;
|
|
|
|
UPDATE `pet_aura`
|
|
SET `maxduration` = `remaintime`, `remaincharges` = -1;
|