Django Public Recipes
This code creates a new DateTimeField object. The auto_now and auto_now_add options determine how the DateTimeField object behaves. The auto_now_add option allows the field to automatically update its value when a new date and time is entered into the field. The auto_now option causes the field to always use the current date and time as its value.
Library: django
Shortcut: django.field.datetime
fieldName = models.DateTimeField(auto_now=False, auto_now_add=False)