mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-20 17:15:51 +02:00
Dont skip the Sqlite migration. Do nothing instead
Before this migration was never finished and always re executed on subsequent migration attempts.
This commit is contained in:
parent
e8e2258357
commit
c737348cea
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ final class Version20230417211732 extends AbstractMultiPlatformMigration
|
||||||
public function sqLiteUp(Schema $schema): void
|
public function sqLiteUp(Schema $schema): void
|
||||||
{
|
{
|
||||||
//As legacy database can only be migrated to MySQL, we don't need to implement this method.
|
//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
|
public function sqLiteDown(Schema $schema): void
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue