I am deploying a Laravel barebone project to Microsoft Azure, but whenever I try to execute php artisan migrate I get the error:
php artisan migrate
[2015-06-13
i also run in the same problem.
The solution for me was to delete the migration file, AND delete the record from the "migrations" table in the database.
After that, I ran
composer dump-autoload
and was finally able to reset/rollback migrations.