diff options
| author | Markus Holtermann <info@markusholtermann.eu> | 2014-12-02 19:25:46 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-12-29 13:41:12 -0500 |
| commit | 623ccdd598625591d1a12fc1564cf3ef9a87581f (patch) | |
| tree | 3f80ab62a49e7ac0824a59bf8e346ac0a73bc89b /docs | |
| parent | 3c5d1edb39020f549c58e0696b8ab2f03a88d753 (diff) | |
Fixed #23938 -- Added migration support for m2m to concrete fields and vice versa
Thanks to Michael D. Hoyle for the report and Tim Graham for the review.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.7.2.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt index da6721a1ba..34f3eb4675 100644 --- a/docs/releases/1.7.2.txt +++ b/docs/releases/1.7.2.txt @@ -44,7 +44,7 @@ Bugfixes * Fixed a migration crash that prevented changing a nullable field with a default to non-nullable with the same default (:ticket:`23738`). -* Fixed a migrations crash when adding ``GeometryField``\s with ``blank=True`` +* Fixed a migration crash when adding ``GeometryField``\s with ``blank=True`` on PostGIS (:ticket:`23731`). * Allowed usage of ``DateTimeField()`` as ``Transform.output_field`` @@ -63,7 +63,7 @@ Bugfixes * Fixed a migration crash when a field is renamed that is part of an ``index_together`` (:ticket:`23859`). -* Fixed :djadmin:`squashmigrations` to respect the ``--no-optimize`` parameter +* Fixed :djadmin:`squashmigrations` to respect the ``--no-optimize`` parameter (:ticket:`23799`). * Made :class:`~django.db.migrations.operations.RenameModel` reversible @@ -144,7 +144,7 @@ Bugfixes * ``makemigrations`` no longer prompts for a default value when adding ``TextField()`` or ``CharField()`` without a ``default`` (:ticket:`23405`). -* Fixed migration crash when adding ``order_with_respect_to`` to a table +* Fixed a migration crash when adding ``order_with_respect_to`` to a table with existing rows (:ticket:`23983`). * Restored the ``pre_migrate`` signal if all apps have migrations @@ -181,3 +181,6 @@ Bugfixes * Supported strings escaped by third-party libraries with the ``__html__`` convention in the template engine (:ticket:`23831`). + +* Fixed a migration crash when changing a ``ManyToManyField`` into a concrete + field and vice versa (:ticket:`23938`). |
