“SQLState [42000]: Syntaxfehler oder Zugriffsverletzung: 1071” Code-Antworten

PDOException: :( "SQLState [42000]: Syntaxfehler oder Zugriffsverletzung: 1071 Der angegebene Schlüssel war zu lang; max. Die Schlüssellänge beträgt 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

Laravel -Migur -Fehler

use Illuminate\Support\Facades\Schema;

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

SQLState [42000]: Syntaxfehler oder Zugriffsverletzung: 1071

use Illuminate\Support\Facades\Schema;

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

Beheben Sie MySQL ERROR 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

Ähnliche Antworten wie “SQLState [42000]: Syntaxfehler oder Zugriffsverletzung: 1071”

Fragen ähnlich wie “SQLState [42000]: Syntaxfehler oder Zugriffsverletzung: 1071”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen