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