diff options
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2018_04_12_00_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/master/2018_04_12_00_world.sql b/sql/updates/world/master/2018_04_12_00_world.sql new file mode 100644 index 00000000000..caef73a3d74 --- /dev/null +++ b/sql/updates/world/master/2018_04_12_00_world.sql @@ -0,0 +1,5 @@ +ALTER TABLE `creature_template_scaling` + CHANGE `LevelScalingDelta` `LevelScalingDeltaMin` smallint(5) NOT NULL DEFAULT '0' AFTER `LevelScalingMax`, + ADD `LevelScalingDeltaMax` smallint(5) NOT NULL DEFAULT '0' AFTER `LevelScalingDeltaMin`; + +UPDATE `creature_template_scaling` SET `LevelScalingDeltaMax`=`LevelScalingDeltaMin`; |
