django-archive-mixin

Archive/soft delete Django models.


Keywords
django, model, mixin, soft, delete
License
MIT
Install
pip install django-archive-mixin==0.1.0

Documentation

Circle CI Coverage Status

Django Archive Mixin

Implements a soft delete / archive capability for the Django ORM.

This project is inspired by other similar projects, such as

This implementation differs in that it not only safe marks an instance as deleted, but it also implements that cascade logic so that relationships that point to the recently "deleted" instance do not break you application.

We piggyback on Django's own delete logic/methodology to help guarentee that it will cascade as expected and will abide by Django's on_delete api for ForeignKeys.

Testing

We test this against a postgres database, once you have postgres installed in running, testing is as simple as

./runtests.sh