amco / dolly

Not an ORM for CouchDB in rails.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add soft delete method

seancookr opened this issue · comments

def destroy(hard_delete = true)
  if hard_delete
    current_implementation
  else
    self.doc['_deleted'] = true
  end
end

something along these lines