Skip to content

Commit ccdfd71

Browse files
committed
DB/Creature: Changed sign of Animkit fields to unsigned
1 parent 0478676 commit ccdfd71

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
ALTER TABLE `creature_addon`
3+
MODIFY COLUMN `aiAnimKit` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `emote`,
4+
MODIFY COLUMN `movementAnimKit` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `aiAnimKit`,
5+
MODIFY COLUMN `meleeAnimKit` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `movementAnimKit`;
6+
7+
ALTER TABLE `creature_template_addon`
8+
MODIFY COLUMN `aiAnimKit` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `emote`,
9+
MODIFY COLUMN `movementAnimKit` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `aiAnimKit`,
10+
MODIFY COLUMN `meleeAnimKit` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `movementAnimKit`;

0 commit comments

Comments
 (0)