“SQLSTATE [42000]: Error de sintaxis o violación de acceso: 1071” Código de respuesta

PDOException: :( "SqlState [42000]: Error de sintaxis o violación de acceso: 1071 La clave especificada fue demasiado larga; la longitud de la clave máxima es 1000 bytes") 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

Error de migración de Laravel

use Illuminate\Support\Facades\Schema;

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

SQLSTATE [42000]: Error de sintaxis o violación de acceso: 1071

use Illuminate\Support\Facades\Schema;

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

Corrige el error 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

Respuestas similares a “SQLSTATE [42000]: Error de sintaxis o violación de acceso: 1071”

Preguntas similares a “SQLSTATE [42000]: Error de sintaxis o violación de acceso: 1071”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código