Sunday, April 9, 2017

Laravel: Delete migration before migrate:reset

I am new to Laravel. I am trying to reset all tables in my database using following command:

php artisan migrate:reset
Unfortunately I get this error:
Fatal error: Class 'AddAgeToPostsTables' not found in C:\xampp\htdocs\gitprojects\laravel

enter image description here

Before try to reset the tables I deleted a migration. Is there a way to solve this problem?



via Daniel

Advertisement