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

Fixed #24584 -- Fixed microsecond handling with older MySQLdb

This commit is contained in:
Jon Dufresne
2015-04-04 12:22:30 -07:00
committed by Claude Paroz
parent ad53213066
commit 2cf58e80d1
3 changed files with 30 additions and 5 deletions

View File

@@ -21,3 +21,7 @@ Bugfixes
* Fixed :djadmin:`squashmigrations` command when using
:class:`~django.db.migrations.operations.SeparateDatabaseAndState`
(:ticket:`24278`).
* Stripped microseconds from ``datetime`` values when using an older version of
the MySQLdb DB API driver as it does not support fractional seconds
(:ticket:`24584`).