Tag: orms
-
How to fix Unknown database type enum requested, Doctrine\DBAL\Platforms\MySQL80Platform may not support it.
So you got this lovely error when trying to reverse engineer a database with doctrine. This error means that your database uses ENUM and is probably running on MySQL. MySQL also contains SET which is about the same as ENUM except enum allows only 1 value from the list( or empty string or NULL) and…