By default and for good reason, MySQL 5.7 is much “stricter” than older versions of MySQL.
That can make your application fail, specifically when column data is set to null. To temporarily fix this, change the SQL_MODE to “”
mysql -u root -p
SET sql_mode = “”;
set global sql_mode=”;