Laravel's Artisan says nothing to migrate
I installed migrations with php artisan migrate:install then created a migration with the php artisan migrate:make create_teams_table command. Now I try to run them with the following command that I made according to the official documentation : php artisan migrate --path=app/foo/migrations/2014_01_21_143531_create_teams_table.php This gives me the following on the console: Nothing to migrate. The migrations table in the database is empty and the new table isn't created neither. I don't understand why the documentation says foo in the path. What does foo mean and where does it comes from?