reshma
reshma

Reputation: 651

how to implement softdelete in rails

I want to have a model where I need to soft delete a record and not show them in the find or any other conditions while searching.

I want to retain the model without deleting the record. How to go about this?

Thanks

Upvotes: 0

Views: 190

Answers (2)

Hauleth
Hauleth

Reputation: 23566

  1. Implement your own by creating nullable deleted_at date-time field in DB.
  2. Use one of these gems.

Upvotes: 1

Femaref
Femaref

Reputation: 61437

Add a deleted field with a migration and a scope to filter out any deleted records.

Upvotes: 1

Related Questions