Allow npc_types field 'special_abilities' to be set as null in database.

Changed due to issues when trying to copy npcs or remove abilities from
the field directly in the dataabase.
This commit is contained in:
KayenEQ
2014-10-20 00:36:13 -04:00
parent affb735c38
commit bb91265b2b
2 changed files with 17 additions and 2 deletions
@@ -0,0 +1,6 @@
ALTER TABLE `merc_stats`
MODIFY COLUMN `special_abilities` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL AFTER `attack_speed`;
ALTER TABLE `npc_types`
MODIFY COLUMN `special_abilities` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL AFTER `npcspecialattks`;