diff --git a/db/migrations/5.5.1_tic_3113_remove_cronjob.php b/db/migrations/5.5.1_tic_3113_remove_cronjob.php
new file mode 100644
index 0000000000000000000000000000000000000000..d883f2ee9ef7193bd09e39b78e0262462bce7a8e
--- /dev/null
+++ b/db/migrations/5.5.1_tic_3113_remove_cronjob.php
@@ -0,0 +1,34 @@
+<?php
+
+class Tic3113RemoveCronjob extends Migration
+{
+    public function description()
+    {
+        return 'Removes the cleanup cronjob for the table "object_user_visits"';
+    }
+
+    public function up()
+    {
+        $query = 'DELETE `cronjobs_tasks`, `cronjobs_schedules`, `cronjobs_logs`
+                  FROM `cronjobs_tasks`
+                  LEFT JOIN `cronjobs_schedules` USING (`task_id`)
+                  LEFT JOIN `cronjobs_logs` USING (`schedule_id`)
+                  WHERE `filename` = :filename';
+
+        DBManager::get()->execute($query, [
+            ':filename' => 'lib/cronjobs/clean_object_user_visits.php'
+        ]);
+    }
+
+    public function down()
+    {
+        $query = 'INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`)
+                  VALUES (:task_id, :filename, :class)';
+
+        DBManager::get()->execute($query, [
+            ':task_id'  => '7cb4134a91bd985263fd570c7560ad72',
+            ':filename' => 'lib/cronjobs/clean_object_user_visits.php',
+            ':class'    => 'CleanObjectUserVisits',
+        ]);
+    }
+}
diff --git a/lib/cronjobs/clean_object_user_visits.php b/lib/cronjobs/clean_object_user_visits.php
deleted file mode 100644
index 80376b78cdc921c5c8e73c21544d89fa95e1609f..0000000000000000000000000000000000000000
--- a/lib/cronjobs/clean_object_user_visits.php
+++ /dev/null
@@ -1,60 +0,0 @@
-<?php
-/**
- * clean_object_user_visits.php.
- *
- * Core cronjob that removes old entries from the table "object_user_visits".
- *
- * @author  Jan-Hendrik Willms <tleilax+studip@gmail.com>
- * @license GPL2 or any later version
- * @since  3.3
- */
-
-class CleanObjectUserVisits extends CronJob
-{
-    /**
-     * Return the name of this cronjob.
-     *
-     * @return String containing the name
-     */
-    public static function getName()
-    {
-        return _('Entfernt alte EintrÃĪge aus der Tabelle "object_user_visits"');
-    }
-
-    /**
-     * Returns the description for this cronjob.
-     *
-     * @return String containing the description
-     */
-    public static function getDescription()
-    {
-        return _('Um die Tabelle "object_user_visits" schmal zu halten, werden alte EintrÃĪge nach einem definierten Zeitraum entfernt.');
-    }
-
-    /**
-     * Returns the defined configuration parameters for this cronjob.
-     *
-     * @return Array with defined parameters
-     */
-    public static function getParameters()
-    {
-        return [];
-    }
-
-    /**
-     * Executes the cronjob.
-     *
-     * @param mixed $last_result Result returned from the last execution
-     * @param Array $parameters  Defined parameters
-     */
-    public function execute($last_result, $parameters = [])
-    {
-        if (Config::get()->NEW_INDICATOR_THRESHOLD) {
-            $query = "DELETE FROM `object_user_visits`
-                      WHERE GREATEST(`visitdate`, `last_visitdate`) < UNIX_TIMESTAMP(NOW() - INTERVAL :expires DAY)";
-            $statement = DBManager::get()->prepare($query);
-            $statement->bindValue(':expires', (int) Config::get()->NEW_INDICATOR_THRESHOLD, PDO::PARAM_INT);
-            $statement->execute();
-        }
-    }
-}
diff --git a/lib/cronjobs/garbage_collector.class.php b/lib/cronjobs/garbage_collector.class.php
index 7adb0cd38f8bfaf2ee564a2c06005924bbc5b7d8..1d060068705455cba864fe1f2e5301a84cac1000 100644
--- a/lib/cronjobs/garbage_collector.class.php
+++ b/lib/cronjobs/garbage_collector.class.php
@@ -148,6 +148,15 @@ class GarbageCollectorJob extends CronJob
 
         Studip\Activity\Activity::doGarbageCollect();
 
+        // remove old entries from the table "object_user_visits".
+        if (Config::get()->NEW_INDICATOR_THRESHOLD) {
+            $query = "DELETE FROM `object_user_visits`
+                      WHERE GREATEST(`visitdate`, `last_visitdate`) < UNIX_TIMESTAMP(NOW() - INTERVAL :expires DAY)";
+            $statement = DBManager::get()->prepare($query);
+            $statement->bindValue(':expires', (int) Config::get()->NEW_INDICATOR_THRESHOLD, PDO::PARAM_INT);
+            $statement->execute();
+        }
+
         // clean db cache
         $cache = new StudipDbCache();
         $cache->purge();