Say I accidentally deleted a django.contrib.auth.models.User entry in django, where it cascade deleted all the rows that were affected.
What would I have to do to restore that user from a backup?
I'm assuming the steps would be:
- Load the backup on a separate machine
- Identify the rows affected by a cascade delete of an Auth User
- Copy those rows from the backup on the separate machine to the affected machine
What tools/scripts can I use for steps 2 and 3? Do I need to write my own or are there built in utilities that may help?