[stable9] Fix conditional check in MySQL setup
Backport of #23760 Fix conditional check in MySQL setup.
This commit is contained in:
parent
277c9f4a03
commit
cff3122a37
|
@ -43,7 +43,7 @@ class MySQL extends AbstractDatabase {
|
|||
$query='select count(*) from information_schema.tables where table_schema=? AND table_name = ?';
|
||||
$result = $connection->executeQuery($query, [$this->dbName, $this->tablePrefix.'users']);
|
||||
$row = $result->fetch();
|
||||
if(!$result or $row[0]==0) {
|
||||
if (!$row or $row['count(*)'] === '0') {
|
||||
\OC_DB::createDbFromStructure($this->dbDefinitionFile);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue