I have an app running and I made a huge mistake, I've deleted a user from the admin site of my Django app before deleting it's UserProfile.
Now, when I try to see the UserProfiles from the admin site, I keep getting an error, for what I've seen it's a record not found exception
.
I've got this problem because I cannot use any backup as the latest one is half a month old and all my users will get really mad if they loose all data.
So, how can I do it so I can enter in the UserProfile (It would be best if using the admin site) to delete the UserProfile?
Thanks