Laravel相关问题 发表于 2017-09-13 | 这篇博客记录学习和开发Laravel过程中遇到的问题,方便自己下次查阅。 1.运行php artisan migrate命令时,出现以下的问题: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes123456789101112在AppServiceProvider.php文件中添加下面的变化:use Illuminate\Support\Facades\Schema;public function boot(){ Schema::defaultStringLength(191);}修改后,再次运行php artisan migrate,如果出现 Base table or view already exists: 1050 Table 'users' already exists错误,则需要在数据库中删除数据表users。