forked from wallabag/wallabag
Fix database already exist detection
This is not the same message exception from MySQL & SQLite with Postgres.
This commit is contained in:
@ -283,10 +283,16 @@ class InstallCommand extends ContainerAwareCommand
|
||||
try {
|
||||
$schemaManager = $connection->getSchemaManager();
|
||||
} catch (\Exception $exception) {
|
||||
// mysql & sqlite
|
||||
if (false !== strpos($exception->getMessage(), sprintf("Unknown database '%s'", $databaseName))) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// pgsql
|
||||
if (false !== strpos($exception->getMessage(), sprintf('database "%s" does not exist', $databaseName))) {
|
||||
return false;
|
||||
}
|
||||
|
||||
throw $exception;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user