[Answered ]-Django how split durationfield over dates it covers using ORM (PostgreSQL)

1👍

you can use models.DurationField (https://www.geeksforgeeks.org/durationfield-django-models/) and specify any duration, also in the model you need to create a field from which moment to count and either indicate what the timezone is there or save it separately in the field for each record

Leave a comment