Skip to content

Instantly share code, notes, and snippets.

@kobeumut
Created December 15, 2017 12:09
Show Gist options
  • Select an option

  • Save kobeumut/9b852ae7f00b213f91e7a8d08eaef550 to your computer and use it in GitHub Desktop.

Select an option

Save kobeumut/9b852ae7f00b213f91e7a8d08eaef550 to your computer and use it in GitHub Desktop.
low version laravel migrate in mysql
//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`))
use Illuminate\Support\Facades\Schema;
public function boot()
{
Schema::defaultStringLength(191);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment