django-revisionfield 0.2.2

django-revisionfield is a model field that auto increments every time the model is saved.UsageImport the field and use it on a model:from django.db import modelsfrom django_revisionfield import RevisionFieldclass Something(models.Model): name =...