diff --git a/osu.Server.Queues.ScoreStatisticsProcessor/Commands/Maintenance/ReorderIncorrectlyImportedTiedScoresCommand.cs b/osu.Server.Queues.ScoreStatisticsProcessor/Commands/Maintenance/ReorderIncorrectlyImportedTiedScoresCommand.cs index ae867c30..498be54b 100644 --- a/osu.Server.Queues.ScoreStatisticsProcessor/Commands/Maintenance/ReorderIncorrectlyImportedTiedScoresCommand.cs +++ b/osu.Server.Queues.ScoreStatisticsProcessor/Commands/Maintenance/ReorderIncorrectlyImportedTiedScoresCommand.cs @@ -102,7 +102,7 @@ public async Task OnExecuteAsync(CancellationToken cancellationToken) if (!DryRun) { - await conn.ExecuteAsync("UPDATE scores SET id = @newScoreId WHERE legacy_score_id = @legacyScoreId AND ruleset_id = @rulesetId", new + await conn.ExecuteAsync("UPDATE scores SET id = @newScoreId, unix_updated_at = UNIX_TIMESTAMP(NOW()) WHERE legacy_score_id = @legacyScoreId AND ruleset_id = @rulesetId", new { newScoreId = newScoreId, legacyScoreId = legacyScoreId,