On Sep 9, 9:21 am, Gonzalo <gonzill...@gmail.com> wrote:
> How would you store that into the database, what type of field on the
> model I mean? should I store the number of seconds + number of days in
> seconds? or the datetime.timedelta() object?
>
> Thanks

You can't store a timedelta object in a database. And annoyingly,
there's no simple method to convert a timedelta to seconds. You have
to do it manually:
time_diff_seconds = time_diff.days * 86400 + time_diff.seconds

So now you have a value in seconds you can store in an IntegerField.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to