Django: durationField default value
The default should be a timedelta. This is a bug in Django and is set to be fixed in the 1.8.1 release.
See: https://code.djangoproject.com/ticket/24566
So using default should be:
time_passed = models.DurationField(default=timedelta())