Hello,
I am working on a PHP/MySQL driven website with a membership system.
The website allows users to insert and update information on their profile.
I’ve always been taught to not allow users to delete information from the table, and instead just update it and change the status.
The dilemma I have is this:
I have given the user two options.
Account deactivation - This will keep all their info on their database and allow them to reactivate at a future point.
Account deletion - This will delete all their info and not allow them to reactivate.
For account deletion, should I be actually be deleting the information from the database?