I tried to run the command php artisan migrate:refresh, It throws the following error,
[Symfony\Component\Debug\Exception\FatalErrorException]
Class 'CreatePasswordResetsTable' not found
I checked in DB, it has rows in the migration table. I truncated the table and re-run the command, It worked fine. I need to know why those rows are not deleted in migration table.
2014_10_12_100000_create_password_resets_table.php
that comes with Laravel after runningphp artisan migrate
? – Tim Lewis