mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
3 lines
186 B
SQL
3 lines
186 B
SQL
ALTER TABLE `lootdrop_entries`
|
|
MODIFY COLUMN `maxlevel` tinyint(3) UNSIGNED NOT NULL DEFAULT 255 AFTER `minlevel`;
|
|
UPDATE `lootdrop_entries` SET `maxlevel` = 255 WHERE `maxlevel` = 127; |