Laravel Migration Error: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes

 Step: 1Update your /app/Providers/AppServiceProvider.php to contain:use IlluminateSupportFacadesSchema; /** * Bootstrap any application services. * * @return void */ public function boot() { Schema::defaultStringLength(191); }Step: 2in AppServiceProvider didn't work. Then editing the database.php file in config folder. Just edit /config/database.php'charset'…

Continue ReadingLaravel Migration Error: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes