1
0
mirror of synced 2024-12-14 15:16:04 +03:00

Merge branch 'DDC-931'

This commit is contained in:
Benjamin Eberlei 2010-12-22 22:06:02 +01:00
commit d488e84d8d

View File

@ -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) {
}
} }
} }