Jeśli używasz Laravel 5.4
i uruchamianie wersji MySQL starszej niż wydanie 5.7.7. Możesz rozwiązać ten problem, wywołując Schema::defaultStringLength
metoda w Twoim AppServiceProvider
boot
klasy metoda.
public function boot()
{
Schema::defaultStringLength(191);
}