Skip to content

Commit

Permalink
Fix live output in ResetCommand
Browse files Browse the repository at this point in the history
This was forgotten in 9e487b4.

Fixes #1663.
  • Loading branch information
franzliedke committed Nov 29, 2018
1 parent 45afc33 commit f591585
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/Database/Console/ResetCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,8 @@ protected function fire()

$this->info('Rolling back extension: '.$extensionName);

$notes = $this->manager->migrateDown($extension);

foreach ($notes as $note) {
$this->info($note);
}
$this->manager->getMigrator()->setOutput($this->output);
$this->manager->migrateDown($extension);

$this->info('DONE.');
}
Expand Down

0 comments on commit f591585

Please sign in to comment.