Skip to content

Instantly share code, notes, and snippets.

@kdonaldson
Last active December 17, 2015 02:39
Show Gist options
  • Save kdonaldson/5537370 to your computer and use it in GitHub Desktop.
Save kdonaldson/5537370 to your computer and use it in GitHub Desktop.
Automatic creation date for django models
created_at = models.DateTimeField(auto_now_add=True, editable=False)
updated_at = models.DateTimeField(auto_now=True, editable=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment