在执行 php artisan migrate
出现错误php
PDOException::("SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 b
解决方案app
config/database.php
文件,将utf8mb4
替换成utf8
app/Providers/AppServiceProvider.php
文件public function boot() { \Illuminate\\Support\\Facades\\Schema::defaultStringLength(); }