diff options
author | offl <offl@users.noreply.github.com> | 2020-11-13 18:13:43 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-12-15 21:54:43 +0100 |
commit | 8648ba2b4a78555f2a49db1ee02c30b99d60db6e (patch) | |
tree | ac85977974ff69c15bc6e5d60f2da4a92ddbbb51 | |
parent | cc952fa43b1e791757693610edf17c81fee7a0df (diff) |
DB/Creature: Make 1 default sheath state to prevent further addon tables corruption
(cherry picked from commit d19c0dfd1b8b5a5f2d2f87beb5099e3fc1c41786)
-rw-r--r-- | sql/updates/world/master/2021_12_15_03_world_2020_11_13_03_world.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_12_15_03_world_2020_11_13_03_world.sql b/sql/updates/world/master/2021_12_15_03_world_2020_11_13_03_world.sql new file mode 100644 index 00000000000..d9c561724b7 --- /dev/null +++ b/sql/updates/world/master/2021_12_15_03_world_2020_11_13_03_world.sql @@ -0,0 +1,3 @@ +-- +ALTER TABLE `creature_addon` MODIFY `bytes2` int(10) unsigned NOT NULL DEFAULT '1'; +ALTER TABLE `creature_template_addon` MODIFY `bytes2` int(10) unsigned NOT NULL DEFAULT '1'; |