Removed trailing whitespaces and CRLFs
[getmangos.git] / sql / updates / 0.6 / 3032_creature.sql
blob7acf357887894db5d0e56a21e6a59209d191f05b
1 /*delete redundant column from creature table*/
2 ALTER TABLE `creature` ADD COLUMN `spawntimesecs` int(11) unsigned NOT NULL default '120' AFTER `spawntimemin`;
4 UPDATE creature SET `spawntimesecs`= (spawntimemin + spawntimemax) /2;
6 ALTER TABLE creature DROP COLUMN spawntimemax;
7 ALTER TABLE creature DROP COLUMN spawntimemin;