server/sql/updates/0.6/2372_creature_template.sql
freghar 95840fd2c3 Removed trailing whitespaces and CRLFs
With /contrib/ and /dep/ excluded.

Signed-off-by: freghar <compmancz@gmail.com>
2008-10-22 11:52:03 +02:00

6 lines
428 B
SQL

ALTER TABLE `creature_template`
CHANGE `maxlevel` `maxlevel` int(3) unsigned default '1' AFTER `minlevel`,
CHANGE `minhealth` `minhealth` int(5) unsigned default '0' AFTER `maxlevel`,
CHANGE `maxhealth` `maxhealth` int(5) unsigned default '0' AFTER `minhealth`,
CHANGE `minmana` `minmana` int(5) unsigned default '0' AFTER `maxhealth`,
CHANGE `maxmana` `maxmana` int(5) unsigned default '0' AFTER `minmana`;