[Web] Do not break init_db when switching branches

master
André Peters 2018-02-11 15:59:58 +01:00
parent 5030ce7547
commit 7a69586d91
1 changed files with 5 additions and 1 deletions

View File

@ -625,7 +625,11 @@ function init_db_schema() {
$stmt = $pdo->query("SHOW TABLES LIKE 'quarantaine'");
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
if ($num_results != 0) {
$pdo->query("RENAME TABLE `quarantaine` TO `quarantine`");
$stmt = $pdo->query("SHOW TABLES LIKE 'quarantine'");
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
if ($num_results == 0) {
$pdo->query("RENAME TABLE `quarantaine` TO `quarantine`");
}
}
}
$stmt = $pdo->query("SHOW TABLES LIKE '" . $table . "'");