I\'ve run artisan migrate:reset
.
I\'ve deleted some of my migration files because I didn\'t need these tables anymore.
I
I had the same problem. When I was hiting php artisan migrate:reset
, I got Class 'CreateImagesTable' not found
. And composer dump-autoload
didn't help.
My solution was very easy:
php artisan make:migration create_images_table --create=images
composer dump-autoload
SQLSTATE[HY000]: General error: 1 no such table: images (SQL: drop table "images")
php artisan migrate:reset