First I rolled back 2 migrations by mistake, then I ran php artisan migrate
command and I got the following error:
[Illuminate\\Database\\QueryExcepti
I also had the same problem. I fixed it, by deleting the database first, then I imported the previous database manually.
And fortunately at that time I still had the previous database backup.
Maybe if you don't have a previous database backup, You can copy all database migrations to a new laravel project, then run 'php artisan migrate' to get the same database as the previous database,