1 PDOException::("SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes")
Jika ketemu error ini
Buka file AppServiceProvider.php di folder app/Providers/
Tambah namespace
use Illuminate\Support\Facades\Schema;Tambahkan :
public function boot()
{
Schema::defaultStringLength(191);
}
0 Komentar