“SQLSTATE [42000]: Sintaxe Erro ou Acesso Violação: 1071” Respostas de código

PdoException: :( "SQLSTATE [42000]: Sintaxe Erro ou Acesso Violação: 1071 A chave especificada foi muito longa; o comprimento da chave máxima é de 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

Erro de migração de Laravel

use Illuminate\Support\Facades\Schema;

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

SQLSTATE [42000]: Sintaxe Erro ou Acesso Violação: 1071

use Illuminate\Support\Facades\Schema;

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

Corrija o erro 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

Respostas semelhantes a “SQLSTATE [42000]: Sintaxe Erro ou Acesso Violação: 1071”

Perguntas semelhantes a “SQLSTATE [42000]: Sintaxe Erro ou Acesso Violação: 1071”

Procure respostas de código populares por idioma

Procurar outros idiomas de código