The issue on the acymailing_list table that doesn't exist seems to be caused by the SP PageBuilder extension.
In the file components/com_sppagebuilder/builder/classes/base.php line 872, they don't check the version number correctly.
You can replace this line:
if ($acym_version >= 6)
By this one to fix the issue:
if (version_compare($acym_version, '6.0', '>='))
We have contacted SP Page Builder developers to alret them about this issue