You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
php artisan db:show returns "Unknown database type enum requested, Doctrine\DBAL\Platforms\MySQL57Platform may not support it." on mysql 5.7
Doctrine\DBAL\Exception
Unknown database type enum requested, Doctrine\DBAL\Platforms\MySQL57Platform may not support it.
at vendor/doctrine/dbal/src/Platforms/AbstractPlatform.php:418
414▕
415▕ $dbType = strtolower($dbType);
416▕
417▕ if (! isset($this->doctrineTypeMapping[$dbType])) {
➜ 418▕ throw new Exception(
419▕ 'Unknown database type ' . $dbType . ' requested, ' . static::class . ' may not support it.'
420▕ );
421▕ }
422▕
+19 vendor frames
20 artisan:37
Illuminate\Foundation\Console\Kernel::handle()
Steps To Reproduce:
Run command php artisan db:show on laravel version 9.24 with mysql 5.7 database
The text was updated successfully, but these errors were encountered:
Description:
php artisan db:show returns "Unknown database type enum requested, Doctrine\DBAL\Platforms\MySQL57Platform may not support it." on mysql 5.7
Steps To Reproduce:
Run command
php artisan db:show
on laravel version 9.24 with mysql 5.7 databaseThe text was updated successfully, but these errors were encountered: