“Kesalahan Sintaks atau Pelanggaran Akses: 1071 la cl est trop longue. Longueur Maximale: 1000” Kode Jawaban

Kesalahan Sintaks atau Pelanggaran Akses: 1071 la cl est trop longue. Longueur Maximale: 1000

// Inclure la facade "Schema"
use Illuminate\Support\Facades\Schema;

// dans la méthode boot(), inclure la ligne suivante
public function boot()
{
    Schema::defaultStringLength(191);
}
Healthy Hamerkop

Kesalahan Sintaks atau Pelanggaran Akses: 1071 la cl est trop longue. Longueur Maximale: 1000

//Add in app/Providers/AppServiceProvider.php :

use Illuminate\Support\Facades\Schema;

public function boot()
{
    Schema::defaultStringLength(191);
}

// In case it does not suits your needs, let's add 'engine' => 'InnoDB', to config/database.php (mysql array)
Healthy Hamerkop

Jawaban yang mirip dengan “Kesalahan Sintaks atau Pelanggaran Akses: 1071 la cl est trop longue. Longueur Maximale: 1000”

Pertanyaan yang mirip dengan “Kesalahan Sintaks atau Pelanggaran Akses: 1071 la cl est trop longue. Longueur Maximale: 1000”

Lebih banyak jawaban terkait untuk “Kesalahan Sintaks atau Pelanggaran Akses: 1071 la cl est trop longue. Longueur Maximale: 1000” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya