diff options
| author | Vincent-Michael <vincent_michael@gmx.de> | 2016-08-13 21:55:39 +0200 |
|---|---|---|
| committer | Vincent-Michael <vincent_michael@gmx.de> | 2016-08-13 21:55:39 +0200 |
| commit | f94339271ee34977c8156a6253caa7b6291fff9f (patch) | |
| tree | c304d6d589a383cd277984e2c2e4ce6b4f783d07 /sql | |
| parent | e6ddb9f2220b045d76e1c3b796fc06b55d6abf4b (diff) | |
Core/Creatures:
- Renamed creature_template.exp_unk to RequiredExpansion
- Added creature_template.HealthScalingExpansion
- Added creature_template.VignetteID
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/6.x/2016_08_13_00_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/6.x/2016_08_13_00_world.sql b/sql/updates/world/6.x/2016_08_13_00_world.sql new file mode 100644 index 00000000000..39350dbc4d2 --- /dev/null +++ b/sql/updates/world/6.x/2016_08_13_00_world.sql @@ -0,0 +1,4 @@ +ALTER TABLE `creature_template` + CHANGE `exp_unk` `RequiredExpansion` MEDIUMINT(5) DEFAULT 0 NOT NULL, + ADD COLUMN `HealthScalingExpansion` MEDIUMINT(5) DEFAULT 0 NOT NULL AFTER `exp`, + ADD COLUMN `VignetteID` MEDIUMINT(5) DEFAULT 0 NOT NULL AFTER `RequiredExpansion`; |
