Ensured all migrations are non-transactional, which allows woring around an issue in doctrine-migrations

This commit is contained in:
Alejandro Celaya
2021-03-12 11:52:43 +01:00
parent 0f2bd77ebc
commit a0062a62e8
24 changed files with 200 additions and 20 deletions

View File

@@ -42,4 +42,12 @@ final class Version20200323190014 extends AbstractMigration
$visitLocations->dropColumn('is_empty');
}
/**
* @fixme Workaround for https://github.com/doctrine/migrations/issues/1104
*/
public function isTransactional(): bool
{
return false;
}
}