No need, the problem is shown in the final image. In the configuration table,

You have

val_function mediumtext default NULL,

You need

val_function text default NULL,

This was done in zc_install/sql/updates/mysql_upgrade_zencart_156.sql:

ALTER TABLE configuration ADD val_function text default NULL AFTER set_function;

You will need to do a modify table to fix this.