Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/model_fields/test_durationfield.py
Commit message (Collapse)AuthorAgeFilesLines
* Refs #24652 -- Used SimpleTestCase where appropriate.Simon Charette2015-05-201-4/+4
|
* Fixed #24302 -- Added DurationField.formfield()Tim Graham2015-02-091-0/+9
|
* Refs #2443 -- Allowed creation of objects with NULL ↵Michał Modzelewski2015-01-071-1/+6
| | | | DurationFields
* Fixed #2443 -- Added DurationField.Marc Tamlyn2014-12-201-0/+67
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.