Are soft deletes a good idea?

Posted by Khou on Stack Overflow See other posts from Stack Overflow or by Khou
Published on 2010-03-31T01:22:44Z Indexed on 2010/03/31 17:03 UTC
Read the original article Hit count: 595

Are soft deletes a good idea or a bad idea?

Instead of actually deleting a record in your database, you would just flag it as "IsDeleted" = true, and upon recovery of the record you could just flag it as "False".

Is this a good idea?

© Stack Overflow or respective owner

Related posts about sql

Related posts about database-design