Hello Brothers,
After updating all modules and everything! I got a problem with update Utility Module! Its saying " Unknown database type enum requested, DoctrineDBALPlatformsMySqlPlatform may not support it. "
I attached you a screenshot and please I need your help!
Note: " I'm using Laraship Form Builder & CMS with extended license"
Thanks
Attachments
Hello,
Can you run composer update again ?
I did it again, and this is the output ” Nothing to install or update
Package phpoffice/phpexcel is abandoned, you should avoid using it. Use phpoffice/phpspreadsheet instead. ”
And still getting the same error for Utility Module ” Unknown database type enum requested, Doctrine\DBAL\Platforms\MySqlPlatform may not support it. ” your advice please
Hello,
We're still not sure about you case, however can you try at Corals/modules/Utility/update-batches/1.0.8.php before line #21
if (!\Schema::hasColumn('utility_ratings', 'status')) {
Add
$platform = Schema::getConnection()->getDoctrineSchemaManager()->getDatabasePlatform();
$platform->registerDoctrineTypeMapping('enum', 'string');
and try updating again
Please login or Register to submit your answer