Avoiding missed auto_now fields in Django when using update_or_create
An oft-used pattern in the Django world is to add something like the following to some models: class SomeModel(models.Model): created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) These are great properties to add to models, because they help to answer a