1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #26324 -- Fixed DurationField with fractional seconds on SQLite.

This commit is contained in:
Tim Graham
2016-03-10 09:22:09 -05:00
parent 85a4844f8a
commit 4f0cd0fd16
4 changed files with 14 additions and 1 deletions

View File

@@ -16,3 +16,6 @@ Bugfixes
* Fixed a race condition in ``BaseCache.get_or_set()`` (:ticket:`26332`). It
now returns the ``default`` value instead of ``False`` if there's an error
when trying to add the value to the cache.
* Fixed data loss on SQLite where ``DurationField`` values with fractional
seconds could be saved as ``None`` (:ticket:`26324`).