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:42:29 -0500 |
| commit | 1702bc52cc20ed0729893177fc8f4391b4b3183c (patch) | |
| tree | 72fbd4f134f8b44f194038536ab43e9bb1fc8f59 /docs | |
| parent | 1cbdb49b0aaba726435db55c4d71dc6a8ade1d2b (diff) | |
[1.7.x] 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.
Backport of 623ccdd598625591d1a12fc1564cf3ef9a87581f from master
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`). |
