Last active
December 17, 2015 02:39
-
-
Save kdonaldson/5537370 to your computer and use it in GitHub Desktop.
Automatic creation date for django models
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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