Skip to content

Commit

Permalink
Allow "app" migrations to override package migrations (#24521)
Browse files Browse the repository at this point in the history
  • Loading branch information
fletch3555 authored and taylorotwell committed Jun 9, 2018
1 parent 5c321df commit 1cbb54e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Console/Migrations/BaseCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ protected function getMigrationPaths()
}

return array_merge(
[$this->getMigrationPath()], $this->migrator->paths()
$this->migrator->paths(), [$this->getMigrationPath()]
);
}

Expand Down

0 comments on commit 1cbb54e

Please sign in to comment.