upgrade/definitions/0.0.1_to_0.0.2.inc.php
<?php
function run_002() {
// Ugly but haven't found a better way
global $setting;
// Version information
$db_version_old = '0.0.1'; // What version do we expect
$db_version_new = '0.0.2'; // What is the new version we wish to upgrade to
$db_version_now = $setting->getValue('DB_VERSION'); // Our actual version installed
// Upgrade specific variables
$aSql[] = "ALTER TABLE `accounts` CHANGE `sessionTimeoutStamp` `last_login` INT( 10 ) NULL DEFAULT NULL";
$aSql[] = "INSERT INTO `settings` (`name`, `value`) VALUES ('DB_VERSION', '0.0.2') ON DUPLICATE KEY UPDATE `value` = '0.0.2'";
if ($db_version_now == $db_version_old && version_compare($db_version_now, DB_VERSION, '<')) {
execute_db_upgrade($aSql);
}
}
?>