mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 19:11:07 +00:00
Fix database already exist detection
This is not the same message exception from MySQL & SQLite with Postgres.
This commit is contained in:
parent
4529d0f4b6
commit
54a2241e13
1 changed files with 6 additions and 0 deletions
|
@ -283,10 +283,16 @@ class InstallCommand extends ContainerAwareCommand
|
||||||
try {
|
try {
|
||||||
$schemaManager = $connection->getSchemaManager();
|
$schemaManager = $connection->getSchemaManager();
|
||||||
} catch (\Exception $exception) {
|
} catch (\Exception $exception) {
|
||||||
|
// mysql & sqlite
|
||||||
if (false !== strpos($exception->getMessage(), sprintf("Unknown database '%s'", $databaseName))) {
|
if (false !== strpos($exception->getMessage(), sprintf("Unknown database '%s'", $databaseName))) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// pgsql
|
||||||
|
if (false !== strpos($exception->getMessage(), sprintf('database "%s" does not exist', $databaseName))) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
throw $exception;
|
throw $exception;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue