[PrestaShopDatabaseException]

Table 'u894358572_pres.ps_velsof_supercheckout_custom_fields' doesn't exist

SELECT * FROM ps_velsof_supercheckout_custom_fields cf JOIN ps_velsof_supercheckout_custom_fields_lang cfl ON cf.id_velsof_supercheckout_custom_fields = cfl.id_velsof_supercheckout_custom_fields WHERE active = 1 AND cfl.id_lang =1

at line 793 in file classes/db/Db.php

788.         if ($webservice_call && $errno) {
789.             $dbg = debug_backtrace();
790.             WebserviceRequest::getInstance()->setError(500, '[SQL Error] '.$this->getMsgError().'. From '.(isset($dbg[3]['class']) ? $dbg[3]['class'] : '').'->'.$dbg[3]['function'].'() Query was : '.$sql, 97);
791.         } elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) {
792.             if ($sql) {
793.                 throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>');
794.             }
795. 
796.             throw new PrestaShopDatabaseException($this->getMsgError());
797.         }
798.     }