Skip to content

Instantly share code, notes, and snippets.

@glaucofox
Last active October 26, 2021 16:57
Show Gist options
  • Select an option

  • Save glaucofox/b1583e64d43593009a7875fd758909ca to your computer and use it in GitHub Desktop.

Select an option

Save glaucofox/b1583e64d43593009a7875fd758909ca to your computer and use it in GitHub Desktop.
Migration Default String Length fix for Laravel >= 5.4 and MySQL =< 5.7.7
<?php
/* App\Providers\AppServiceProvider.php */
use Illuminate\Support\Facades\Schema;
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Schema::defaultStringLength(191);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment