Skip to content

Instantly share code, notes, and snippets.

@wojtha
Created January 7, 2017 23:21
Show Gist options
  • Select an option

  • Save wojtha/ba08912d8fcdea4e6fbf75a5fd346d6f to your computer and use it in GitHub Desktop.

Select an option

Save wojtha/ba08912d8fcdea4e6fbf75a5fd346d6f to your computer and use it in GitHub Desktop.
Implementing soft deletes in Rails, source: http://patrikonrails.com/posts/3
class Comment < ApplicationRecord
default_scope -> { where(deleted_at: nil) }
def soft_delete
update(deleted_at: Time.current)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment