From c737348cea6bf2b47bf2e8a931678a93e69870d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 31 Jul 2023 22:30:02 +0200 Subject: [PATCH] Dont skip the Sqlite migration. Do nothing instead Before this migration was never finished and always re executed on subsequent migration attempts. --- migrations/Version20230417211732.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/Version20230417211732.php b/migrations/Version20230417211732.php index 382f6650..7fef77eb 100644 --- a/migrations/Version20230417211732.php +++ b/migrations/Version20230417211732.php @@ -38,7 +38,7 @@ final class Version20230417211732 extends AbstractMultiPlatformMigration public function sqLiteUp(Schema $schema): void { //As legacy database can only be migrated to MySQL, we don't need to implement this method. - $this->skipIf(true, 'Not needed for SQLite'); + //Dont skip here, as this causes this migration always to be executed. Do nothing instead. } public function sqLiteDown(Schema $schema): void