1054, 'ALTER TABLE `' . Common::prefixTable('logger_api_call') . '` CHANGE `caller_ip` `caller_ip` INT UNSIGNED' => array(1054, 1146), ); } public function doUpdate(Updater $updater) { $config = Config::getInstance(); $dbInfos = $config->database; if (!isset($dbInfos['schema'])) { try { if (is_writable(Config::getLocalConfigPath())) { $config->database = $dbInfos; $config->forceSave(); } else { throw new \Exception('mandatory update failed'); } } catch (\Exception $e) { } } $updater->executeMigrationQueries(__FILE__, $this->getMigrationQueries($updater)); } }