diff options
Diffstat (limited to 'core/Command/Db')
-rw-r--r-- | core/Command/Db/ConvertType.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Db/ConvertType.php b/core/Command/Db/ConvertType.php index 7fdf1f39b8e..b6c2c66b3d3 100644 --- a/core/Command/Db/ConvertType.php +++ b/core/Command/Db/ConvertType.php @@ -245,7 +245,7 @@ class ConvertType extends Command implements CompletionAwareInterface { $currentMigration = $fromMS->getMigration('current'); if ($currentMigration !== '0') { $toMS = new MigrationService($app, $toDB); - $toMS->migrate($currentMigration); + $toMS->migrate($currentMigration, true); } } } |