only commit in case a transaction is active
This commit is contained in:
parent
a547bf8fe6
commit
363ba04f5e
1 changed files with 3 additions and 1 deletions
|
@ -110,7 +110,9 @@ class Migrator {
|
|||
$this->dropTable($tmpName);
|
||||
} catch (DBALException $e) {
|
||||
// pgsql needs to commit it's failed transaction before doing anything else
|
||||
$this->connection->commit();
|
||||
if ($this->connection->isTransactionActive()) {
|
||||
$this->connection->commit();
|
||||
}
|
||||
$this->dropTable($tmpName);
|
||||
throw new MigrationException($table->getName(), $e->getMessage());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue