Merge pull request #148 from KayenEQ/AAupdates

SlowMItigation sql fix
This commit is contained in:
JJ 2014-05-05 09:58:06 -04:00
commit 5af0cb2844
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,6 @@
UPDATE npc_types SET slow_mitigation = slow_mitigation * 100;
-- Change variable type from FLOAT TO INT
ALTER TABLE npc_types MODIFY slow_mitigation smallint(4);
ALTER TABLE npc_types MODIFY slow_mitigation smallint(4) NOT NULL DEFAULT '0';

View File

@ -0,0 +1,3 @@
ALTER TABLE npc_types MODIFY slow_mitigation smallint(4) NOT NULL DEFAULT '0';