mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 10:37:02 +00:00
5 lines
364 B
SQL
5 lines
364 B
SQL
ALTER TABLE `item_template` CHANGE `AllowableClass` `AllowableClass` mediumint(9) not null default '-1';
|
|
ALTER TABLE `item_template` CHANGE `AllowableRace` `AllowableRace` mediumint(9) not null default '-1';
|
|
|
|
UPDATE `item_template` SET `AllowableClass` = -1 WHERE `AllowableClass` = 0;
|
|
UPDATE `item_template` SET `AllowableRace` = -1 WHERE `AllowableRace` = 0;
|