One “trick” that propel offers you is tables with fields created_at and updated_at.
The fields are self explanatory and within Propel you just define them and they just do their business.
To simulate this in Django just do:
updated_at = models.DateTimeField(auto_now=True) created_at = models.DateTimeField(auto_now_add=True)
auto_now automatically sets a field to the current time, and auto_now_add only does this if the [...]



