İyi günler, dün Laravel öğrenmeye başladım fakat izlediğim kursta ne yapılırsa yapılsın aynısını yapmama rağmen Laravel'e Jetstream kurduktan sonra "php artisan migrate" komutunu yazdım ve şu hatayı aldım;
Illuminate\Database\QueryException
SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes (SQL: alter table `users` add unique `users_email_unique`(`email`))
at C:\Users\Akın Can\Desktop\quiz\vendor\laravel\framework\src\Illuminate\Database\Connection.php:678
674▕ // If an exception occurs when attempting to run a query, we'll format the error
675▕ // message to include the bindings with SQL, which will make this exception a
676▕ // lot more helpful to the developer instead of just the database's errors.
677▕ catch (Exception $e) {
➜ 678▕ throw new QueryException(
679▕ $query, $this->prepareBindings($bindings), $e
680▕ );
681▕ }
682▕
1 C:\Users\Akın Can\Desktop\quiz\vendor\laravel\framework\src\Illuminate\Database\Connection.php:471
PDOException::("SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes")
2 C:\Users\Akın Can\Desktop\quiz\vendor\laravel\framework\src\Illuminate\Database\Connection.php:471
PDOStatement::execute()Acaba çözümü nedir ?