You Are Here: Home » Uncategorized
Laravel: Fix Nothing to migrate error on php artisan migrate
Advertisement
If you get the "Nothing to migrate error" when you run the command: php artisan migrate, run following:
> php artisan migrate:reset
> php artisan migrate
Advertisement