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