SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long
解决方法:
在appProvidersAppServiceProvider下的boot方法下添加如下语句:
public function boot() {
Schema::defaultStringLength(191); //Solved by increasing StringLength
}
再次运行php artisan admin:install 命令时报错:
Class 'AppProvidersSchema' not found
解决方法:
在appProvidersAppServiceProvider下引入"use IlluminateSupportFacadesSchema;"