Hello,
On my latest version I added a column in the player database. I did the necessary in game.php in the upgradeTableDb function but I think it doesn't work. In-progress games appear broken. Did I do things wrong? Can you help me?
Thanks in advance
in my sql file:
in my game.php file: (the version 2309031908 is indeed the one just before the one where I touched the database.
On my latest version I added a column in the player database. I did the necessary in game.php in the upgradeTableDb function but I think it doesn't work. In-progress games appear broken. Did I do things wrong? Can you help me?
Thanks in advance
in my sql file:
Code: Select all
ALTER TABLE `player` ADD `player_info` int(2) unsigned DEFAULT NULL;Code: Select all
function upgradeTableDb( $from_version )
{
if( $from_version <= 2309031908 )
{
$sql = "ALTER TABLE DBPREFIX_player ADD `player_info` int(2) unsigned DEFAULT NULL";
self::applyDbUpgradeToAllDB( $sql );
}
}