1091, "ALTER TABLE `$logConversion` $dropColumns" => 1091, // add geoip columns to log_visit "ALTER TABLE `$logVisit` $addColumns" => 1060, // add geoip columns to log_conversion "ALTER TABLE `$logConversion` $addColumns" => 1060, ); } public function doUpdate(Updater $updater) { try { self::enableMaintenanceMode(); $updater->executeMigrationQueries(__FILE__, $this->getMigrationQueries($updater)); self::disableMaintenanceMode(); } catch (\Exception $e) { self::disableMaintenanceMode(); throw $e; } } }