mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 13:41:31 +00:00
If you already ran the 4-12 update you do not need to run it again, just run the new one.
8 lines
228 B
SQL
8 lines
228 B
SQL
-- Convert all values from FLOAT to INT
|
|
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) NOT NULL DEFAULT '0';
|
|
|
|
|