“SQLSTATE [42000]: Erreur de syntaxe ou violation d'accès: 1071” Réponses codées

PDOException: :( "SqlState [42000]: Erreur de syntaxe ou violation d'accès: 1071 La clé spécifiée était trop longue; la longueur de clé maximale est de 1000 octets") Laravel 8

// Update your /app/Providers/AppServiceProvider.php to contain:

use Illuminate\Support\Facades\Schema;

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

//ON this error 
//   PDOException::("SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists")
// After run ->  php artisan migrate:fresh  <- ! Note this will reset all tables in db
Jaskaran

Erreur de migation de Laravel

use Illuminate\Support\Facades\Schema;

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

SQLSTATE [42000]: Erreur de syntaxe ou violation d'accès: 1071

use Illuminate\Support\Facades\Schema;

/**
 * Bootstrap any application services.
 *
 * @return void
 */
public function boot()
{
    Schema::defaultStringLength(191);
}
Dev

Correction de l'erreur MySQL 1071 (42000)

# ERROR 1071 (42000): OR ANY ABOUT Specified key was too long; max key length is 767 bytes
# =============================================================================

# This error impacts MYSQL and MariaDB
# The commands that you will need to run to correct the error are:

SET GLOBAL innodb_file_format=Barracuda;
SET GLOBAL innodb_file_per_table=on;
SET GLOBAL innodb_large_prefix=on;
sumer5020

Réponses similaires à “SQLSTATE [42000]: Erreur de syntaxe ou violation d'accès: 1071”

Questions similaires à “SQLSTATE [42000]: Erreur de syntaxe ou violation d'accès: 1071”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code