Alex P
0
Q:

ERROR 1071 (42000) at line 76: Specified key was too long; max key length is 767 bytes laravel

use Illuminate\Support\Facades\Schema;

public function boot()
{
    Schema::defaultStringLength(191);
}
3
use Illuminate\Database\Schema\Builder; // Import Builder where defaultStringLength method is defined

function boot()
{
    Builder::defaultStringLength(191); // Update defaultStringLength
}
0
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
0
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
0

New to Communities?

Join the community