Removed trailing whitespaces and CRLFs
[getmangos.git] / sql / updates / 0.8 / 4437_character_aura.sql
blob47908915d4ac0a2adbf8cc08c78acf482b6ec793
1 ALTER TABLE `character_aura`
2   ADD `maxduration`   int(11) NOT NULL default '0' AFTER `amount`,
3   ADD `remaincharges` int(11) NOT NULL default '0' AFTER `remaintime`;
5 UPDATE `character_aura`
6   SET `maxduration` = `remaintime`, `remaincharges` = -1;