Laravel5.6: Php artisan migrate --path is not working
I have migrations files in database/migrations/ef and migratons from a package. I just want to use the migrations from database/migrations/ef. I am using php artisan migrate --path=/database/migrations/ef, but it says "Nothing to migrate" and that is the right direction where the files are. My project is in Laravel 5.6
Check your migrations table in the database. You might have already executed them and meaning there will be 'Nothing to migrate'. Remember that if once executed the migrations have to be reverted/executed after if you have changed something. If already in production then write a new migration and describe only the additional information. Hope that makes sense. Just for debugging you could try to copy and paste all in the root migrations folder and migrate it to see if they are executable.
There is nothing in the database, I tried copying and pasting all the files in the root migrations folder and migrate, but I got the same message: "Nothing to migrate"