Não estou conseguindo rodar o comando php artisan migrate, está dando o seguinte erro no terminal:
Illuminate\Database\QueryException
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'first_laravel.migrations' doesn't exist (Connection: mysql, SQL: select `migration` from `migrations` order by `batch` asc, `migration` asc)
at vendor\laravel\framework\src\Illuminate\Database\Connection.php:801
797▕ $this->getName(), $query, $this->prepareBindings($bindings), $e
798▕ );
799▕ }
800▕
➜ 801▕ throw new QueryException(
802▕ $this->getName(), $query, $this->prepareBindings($bindings), $e
803▕ );
804▕ }
805▕ }
i A table was not found: You might have forgotten to run your database migrations.
https://laravel.com/docs/master/migrations#running-migrations
1 vendor\laravel\framework\src\Illuminate\Database\Connection.php:416
PDOException::("SQLSTATE[42S02]: Base table or view not found: 1146 Table 'first_laravel.migrations' doesn't exist")
2 vendor\laravel\framework\src\Illuminate\Database\Connection.php:416
PDO::prepare("select `migration` from `migrations` order by `batch` asc, `migration` asc")