diff --git a/module/VuFind/src/VuFind/Controller/UpgradeController.php b/module/VuFind/src/VuFind/Controller/UpgradeController.php
index eb2a7a5db3e3d062dd5b387af136386c0d1719bc..74fb8e4352db1785b7ff8c5e348e929b57826a0d 100644
--- a/module/VuFind/src/VuFind/Controller/UpgradeController.php
+++ b/module/VuFind/src/VuFind/Controller/UpgradeController.php
@@ -284,17 +284,6 @@ class UpgradeController extends AbstractBase
                 . ' legacy "VuFind" source value(s) in resource table'
             );
         }
-
-        $userStatsFields = $this->getTable('userstatsfields');
-        $usfWhere = ['field' => 'recordSource', 'value' => 'VuFind'];
-        $usfRows = $userStatsFields->select($usfWhere);
-        if (count($usfRows) > 0) {
-            $userStatsFields->update(['value' => 'Solr'], $usfWhere);
-            $this->session->warnings->append(
-                'Converted ' . count($usfRows)
-                . ' legacy "VuFind" source value(s) in user_stats_fields table'
-            );
-        }
     }
 
     /**