默认 create_users_table 抛出最大密钥长度错误

Default create_users_table throwing max key length error

我通过在命令提示符 window 中执行这些代码行来启动我的 Laravel 项目 window。

cd C:\xampp\htdocs
composer global require laravel/installer
laravel new iezon

然后我执行了构建身份验证方案的命令,我还没有编辑任何东西。

artisan make:auth

然后我转到我的配置文件夹,在 database.php 中,我将 mysql 更改为正确的信息,同样使用覆盖它的 .env 文件。

现在,我创建迁移 table 以使用以下方法检查我与数据库的连接:

php artisan migrate:install

并安装我的 tables(默认用户 tables):

php artisan migrate:fresh

然后在这个调试中抛出一个错误:

Dropped all tables successfully.
Migration table created successfully.
Migrating: 2014_10_12_000000_create_users_table

   Illuminate\Database\QueryException  : SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes (SQL: alter table `users` add unique `users_email_unique`(`email`))

  at C:\xampp\htdocs\iezon\vendor\laravel\framework\src\Illuminate\Database\Connection.php:664
    660|         // If an exception occurs when attempting to run a query, we'll format the error
    661|         // message to include the bindings with SQL, which will make this exception a
    662|         // lot more helpful to the developer instead of just the database's errors.
    663|         catch (Exception $e) {
  > 664|             throw new QueryException(
    665|                 $query, $this->prepareBindings($bindings), $e
    666|             );
    667|         }
    668|

  Exception trace:

  1   PDOException::("SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes")
      C:\xampp\htdocs\iezon\vendor\laravel\framework\src\Illuminate\Database\Connection.php:458

  2   PDOStatement::execute()
      C:\xampp\htdocs\iezon\vendor\laravel\framework\src\Illuminate\Database\Connection.php:458

知道我遗漏或做错了什么命令吗?除了 database.php 文件和具有正确 mysql 信息的 .env 文件之外,我没有更改任何文件内容。我该如何解决这个问题?

Go To AppServiceProvider.php in ```app\Providers```

并通过添加此行

来更改 boot()
\Schema::defaultStringLength(191);


function boot()
{
 \Schema::defaultStringLength(191);
}

Laravel 默认使用 utf8mb4 字符集,其中包括支持在数据库中存储 "emojis"。如果您 运行 的 MySQL 版本早于 5.7.7 版本或 MariaDB 早于 10.2.2 版本,您可能需要手动配置迁移生成的默认字符串长度为了 MySQL 为它们创建索引。您可以通过在 AppServiceProvider

中调用 Schema::defaultStringLength 方法来配置它