The same error occurred to me. Apparently the error occurs in a column of type enum in the database. For MySQL you can solve it in the following way (within the MySQL database administrator):
SET GLOBAL sql_mode='';
By setting the mode with an empty string '' you are telling MySQL not to take into account some errors that arise when inserting data.
MySQL can operate in different modes, some modes are more restrictive than others, for example some modes do not allow certain operations, such as division between zero or restrict the way in which dates are represented in the database.
To see the way the server is located, you must log in to MySQL from the command line:
mysql -u usuario -p
If the MySQL server does not have a password (which is not recommended) I omitted the -p parameter. You can then consult the mode with the following command
SELECT @@GLOBAL.sql_mode
It will give you an exit more or less similar to this:
STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION
You can find more information in this link link