false, 'ALTER TABLE `' . Common::prefixTable('logger_api_call') . '` CHANGE `caller_ip` `caller_ip` INT UNSIGNED' => false, ); } static function update() { $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::updateDatabase(__FILE__, self::getSql()); } }