
- Fixed SQL queries to convert CARD0_PET to positive value before adjusting table to avoid setting the value to 0. - Thanks to Cydh.
9 lines
538 B
SQL
9 lines
538 B
SQL
UPDATE `picklog` SET `card0` = 256 WHERE `card0` = -256;
|
|
|
|
ALTER TABLE `picklog` MODIFY `nameid` smallint(5) unsigned NOT NULL default '0';
|
|
ALTER TABLE `picklog` MODIFY `card0` smallint(5) unsigned NOT NULL default '0';
|
|
ALTER TABLE `picklog` MODIFY `card1` smallint(5) unsigned NOT NULL default '0';
|
|
ALTER TABLE `picklog` MODIFY `card2` smallint(5) unsigned NOT NULL default '0';
|
|
ALTER TABLE `picklog` MODIFY `card3` smallint(5) unsigned NOT NULL default '0';
|
|
ALTER TABLE `mvplog` MODIFY `prize` smallint(5) unsigned NOT NULL default '0';
|