public function doUpdateDomainAction($domainid, $params)
 {
     $result = true;
     if (strlen($params['file'])) {
         $params['file'] = $this->basedir . '/core/db/' . $params['file'];
         $xml_upd = new \Innomatic\Dataaccess\DataAccessXmlTableUpdater($this->domainda, $this->container->getHome() . 'core/db/' . basename($params['file']) . '.old', $params['file']);
         $xml_upd->applyDiffs($params);
     } else {
         $this->mLog->logEvent('innomatic.domaintablecomponent.domaintablecomponent.doupdatedomainaction', 'In application ' . $this->appname . ', component ' . $params['name'] . ': Empty table file name', \Innomatic\Logging\Logger::ERROR);
     }
     return $result;
 }