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