[Web] Minor fixes and changes

This commit is contained in:
andryyy
2019-08-10 15:57:07 +02:00
parent 22357a539d
commit d8dfd5061b
4 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ function init_db_schema() {
$stmt = $pdo->query("SHOW TABLES LIKE 'versions'");
$num_results = count($stmt->fetchAll(PDO::FETCH_ASSOC));
if ($num_results != 0) {
$stmt = $pdo->query("SELECT `version` FROM `versions`");
$stmt = $pdo->query("SELECT `version` FROM `versions` WHERE `application` = 'db_schema'");
if ($stmt->fetch(PDO::FETCH_ASSOC)['version'] == $db_version) {
return true;
}