Let's say I have a user created, who leaves some comments on my site, and then I delete them using @user.destroy.
Now when I display the comments, it throws up errors because @user is nil for the comments they've written.
What would be a good approach to fixing this, considering that:
- I would still like to be able to delete users (at least superficially)
- I would like the user to be able to be re-signed up using the same credentials.