File name conversion issue after the upgrade

These are probably just files that no longer have a valid user associated with them. Probably safe to ignore, if the file is removed from the database. You could probably find these with:

SELECT * FROM submission_files WHERE uploader_user_id NOT IN (SELECT DISTINCT user_id FROM users);

If that returns nothing then you should be fine.