The real issue is with the MySQL 5.7 server. It doesn't accept invalid custom date value for datetime field. A quick solution would be to run
SET SQL_MODE='ALLOW_INVALID_DATES';
In your mysql server.
You can also do this inside your phpMyAdmin panel in the Query tab.