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

Fixed #26475 -- Added functools.partial() support to migrations autodetector.

This commit is contained in:
Matthew Schinckel
2016-04-18 11:25:15 +09:30
committed by Tim Graham
parent 2a9bcb503f
commit 5402f3ab09
3 changed files with 60 additions and 0 deletions

View File

@@ -15,3 +15,6 @@ Bugfixes
* Fixed ``TimeField`` microseconds round-tripping on MySQL and SQLite
(:ticket:`26498`).
* Prevented ``makemigrations`` from generating infinite migrations for a model
field that references a ``functools.partial`` (:ticket:`26475`).