In django - is there a default timestamp field for all objects? That is, do I have to explicitly declare a \'timestamp\' field for \'created on\' in my Model - or is there a way
You can try django-extensions
if you want to use time-stamp abstract model
from django_extensions.db.models import TimeStampedModel class A(TimeStampedModel): ...
It has other abstract models. you can use that too.