First I rolled back 2 migrations by mistake, then I ran php artisan migrate command and I got the following error:
php artisan migrate
[Illuminate\\Database\\QueryExcepti
For me, this error was occurring because of a scheduled task in laravel that involved a database lookup. By commenting out that lookup in laravel/app/Console/Kernel.php from my scheduled task, I was able to migrate my database again.
laravel/app/Console/Kernel.php