framework: php artisan migrate --path is not working
I am trying to use php artisan migrate --path="/database/migrations/ef
to use only the migrations in that path. But I got “Nohting no migrate” and the migration files are in that direction.
I got the same using `php artisan migrate --path="/database/migrations
About this issue
- Original URL
- State: closed
- Created 6 years ago
- Comments: 17 (7 by maintainers)
You are mixing Unix and Windows file separators.
Did you try it with
--path="database\migrations\ef"
?