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