Please wait, checking to see if your database requires updates...
if(!DB::TableExists(ADODB_PREFIX.'Migrations'))
{
include('sql/Migrations/1.php');
} else {
echo '- Migrations table exists...
';
}
foreach($tables as $table)
{
if(DB::CheckForChanges($table))
{
$badtables[]=$table;
$needupdate=true;
}
}
?>
if($needupdate): $c=0;?>
Database Upgrade in Progress
foreach($badtables as $table):$c++?>
=DB::ApplyTableFixes($table)?>
endforeach;?>
- =$c?> tables updated.