diff --git a/src/Migrations/System/Version20180713210336.php b/src/Migrations/System/Version20201227234115.php similarity index 76% rename from src/Migrations/System/Version20180713210336.php rename to src/Migrations/System/Version20201227234115.php index ba835688..05111b50 100644 --- a/src/Migrations/System/Version20180713210336.php +++ b/src/Migrations/System/Version20201227234115.php @@ -1,5 +1,7 @@ dropTable('app_todo'); } + + /** + * @see https://github.com/doctrine/migrations/issues/1104 + */ + public function isTransactional(): bool + { + return false; + } } diff --git a/src/Migrations/System/Version20180713210701.php b/src/Migrations/System/Version20201227234138.php similarity index 73% rename from src/Migrations/System/Version20180713210701.php rename to src/Migrations/System/Version20201227234138.php index a6cc51f9..d76644aa 100644 --- a/src/Migrations/System/Version20180713210701.php +++ b/src/Migrations/System/Version20201227234138.php @@ -1,5 +1,7 @@ addSql('DELETE FROM app_todo WHERE 1=1'); } + + /** + * @see https://github.com/doctrine/migrations/issues/1104 + */ + public function isTransactional(): bool + { + return false; + } }