This issue has been occurring on and off for a few weeks now, and it\'s unlike any that has come up with my project.
Two of the models that are used have a timestam
Just set the parameter auto_now_add like this.
auto_now_add
timestamp = models.DateTimeField(auto_now_add=True)
Update:
Please don't use auto_now_add. It is not the recommended way, instead do this:
from django.utils import timezone timestamp = models.DateTimeField(default=timezone.now)