DDC-931 - SchemaTool#dropSchema() should not stop on failure of a single query (as stated in docblocks).
This commit is contained in:
parent
e46c65db09
commit
a4f88407c2
1 changed files with 5 additions and 1 deletions
|
@ -498,7 +498,11 @@ class SchemaTool
|
||||||
$conn = $this->_em->getConnection();
|
$conn = $this->_em->getConnection();
|
||||||
|
|
||||||
foreach ($dropSchemaSql as $sql) {
|
foreach ($dropSchemaSql as $sql) {
|
||||||
$conn->executeQuery($sql);
|
try {
|
||||||
|
$conn->executeQuery($sql);
|
||||||
|
} catch(\Exception $e) {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue