diff options
author | Brian <runningnak3d@gmail.com> | 2010-01-22 10:21:25 -0700 |
---|---|---|
committer | Brian <runningnak3d@gmail.com> | 2010-01-22 10:21:25 -0700 |
commit | b57fec2961c8042cbe8cc19f65018e2b89e36df2 (patch) | |
tree | 09396ce54afb62a3ec690012fbfad0aef5337e5d | |
parent | c1aa60aaab82733ebb91ce31281f85edf8e7618d (diff) |
* Fixed a typo in 7147_world_creature_template.sql that prevented import
--HG--
branch : trunk
-rw-r--r-- | sql/updates/7147_world_creature_template.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/updates/7147_world_creature_template.sql b/sql/updates/7147_world_creature_template.sql index 2f46ba513f0..7202edab18a 100644 --- a/sql/updates/7147_world_creature_template.sql +++ b/sql/updates/7147_world_creature_template.sql @@ -1,6 +1,6 @@ ALTER TABLE `creature_template` DROP COLUMN `dmg_Mod`, -DROP COLUMN `rangeddmg_Mod`; +DROP COLUMN `rangeddmg_Mod`, ADD COLUMN `mindmg` float NOT NULL DEFAULT '0' AFTER `rank`, ADD COLUMN `maxdmg` float NOT NULL DEFAULT '0' AFTER `mindmg`, ADD COLUMN `attackpower` int(10) unsigned NOT NULL DEFAULT '0' AFTER `dmgschool`, |