I have two Laravel projects. They are in different folders. It is okay until then.
Currently my projects use Laravel 5. The last one.
I have one project I tried to migrate. But, I do not have any idea why it is looking for migration files of another.
I run from /project1
to look for /project1/database/migrations
by using this command:
php artisan migrate:refresh
However, it also looks for migrations of the project2
in the /project1/database/migrations
like above:
Definitely it is not there. Because it doesn't belong to the /project1
. Look at:
So, how does Laravel try to load migrations of any other project?
Ps.: I have already tried to clear the Laravel application cache. But, the bug persists.