mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-01-26 05:27:29 +02:00
[Web] Do not break init_db when switching branches
This commit is contained in:
parent
5030ce7547
commit
7a69586d91
@ -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 . "'");
|
||||
|
Loading…
x
Reference in New Issue
Block a user