Hacker News new | ask | show | jobs
by temporallobe 1206 days ago
Same here. We implemented a “soft delete” in a system I worked on recently, as actually deleting something could have legal implications. We just have a table column where we mark it as deleted and then exclude those from any retrieval queries. If we ever need to undelete, someone can manually update the database.