summaryrefslogtreecommitdiff
path: root/tests/model_fields/test_durationfield.py
AgeCommit message (Collapse)Author
2015-02-09[1.8.x] Fixed #24302 -- Added DurationField.formfield()Tim Graham
Backport of 2d7c27d3870e57edd1b2ac46b49f0a8804753a1e from master
2015-01-07Refs #2443 -- Allowed creation of objects with NULL DurationFieldsMichaƂ Modzelewski
2014-12-20Fixed #2443 -- Added DurationField.Marc Tamlyn
A field for storing periods of time - modeled in Python by timedelta. It is stored in the native interval data type on PostgreSQL and as a bigint of microseconds on other backends. Also includes significant changes to the internals of time related maths in expressions, including the removal of DateModifierNode. Thanks to Tim and Josh in particular for reviews.