aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2020_05_02_01_world.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2020_05_02_01_world.sql b/sql/updates/world/master/2020_05_02_01_world.sql
new file mode 100644
index 00000000000..ba0f927c713
--- /dev/null
+++ b/sql/updates/world/master/2020_05_02_01_world.sql
@@ -0,0 +1,7 @@
+ALTER TABLE `creature_template_scaling`
+ ADD COLUMN `DifficultyID` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `Entry`,
+ ADD COLUMN `ContentTuningID` INT(10) NOT NULL DEFAULT '0' AFTER `LevelScalingDeltaMax`,
+ DROP PRIMARY KEY,
+ ADD PRIMARY KEY (`Entry`, `DifficultyID`);
+
+ALTER TABLE `creature_classlevelstats` DROP `basearmor`;