diff options
| author | ModoX <moardox@gmail.com> | 2025-12-22 19:07:51 +0100 |
|---|---|---|
| committer | ModoX <moardox@gmail.com> | 2025-12-22 19:07:51 +0100 |
| commit | ccdfd71ad763d6437f97d59d840f7f8c95b41b42 (patch) | |
| tree | 5f9fe6c6d03127df67cd9455d6fb5e51184aa705 /sql/updates | |
| parent | 047867612b54d15eb34f85850721c9caf1d60e3c (diff) | |
DB/Creature: Changed sign of Animkit fields to unsigned
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/world/master/2025_12_22_00_world.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_12_22_00_world.sql b/sql/updates/world/master/2025_12_22_00_world.sql new file mode 100644 index 00000000000..72f0a4c852e --- /dev/null +++ b/sql/updates/world/master/2025_12_22_00_world.sql @@ -0,0 +1,10 @@ + +ALTER TABLE `creature_addon` + MODIFY COLUMN `aiAnimKit` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `emote`, + MODIFY COLUMN `movementAnimKit` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `aiAnimKit`, + MODIFY COLUMN `meleeAnimKit` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `movementAnimKit`; + +ALTER TABLE `creature_template_addon` + MODIFY COLUMN `aiAnimKit` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `emote`, + MODIFY COLUMN `movementAnimKit` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `aiAnimKit`, + MODIFY COLUMN `meleeAnimKit` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `movementAnimKit`; |
