Hello, the problem is in mysql. The specified column has no default value.
MySQL Strict Mode is enabled.
You can change in the mysql config file
/etc/mysql/my.cnf
An easier way, set the column default value.
Example
ALTER TABLE tableName MODIFY COLUMN columnName VARCHAR(255) NOT NULL DEFAULT '';
OR
ALTER TABLE tableName MODIFY COLUMN columnDate DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00';
OR
ALTER TABLE tableName MODIFY COLUMN columnNumber DOUBLE NOT NULL DEFAULT '0.00000';
OR
ALTER TABLE tableName MODIFY COLUMN columnNumber INT(11) NOT NULL DEFAULT '0';