0
Hello, I’m starting in php plus the Laravel framework, and my doubt is about the command
php artisan migrate
to migrate a table in the database.
When I executed the command for the first time it presented this message Nothing to migrate
after a few more attempts, closing and opening the command prompt it worked.
For no doubt I deleted the table and executed the command again, and the message appears again.
I searched several places and many said I should take this parameter
--path=app/foo/migrations/2014_01_21_143531_create_teams_table.php
(example)
which I only used to see if it worked, yet the message keeps coming.
I hope that someone can explain to me a little more about this command and what causes this message Nothing to migrate
.