summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarten Kenbeek <marten.knbk@gmail.com>2015-04-05 15:59:23 +0200
committerMarkus Holtermann <info@markusholtermann.eu>2015-04-05 20:29:27 +0200
commit773387ce42de1c355e6ed6b9ddd49dc52474fc0a (patch)
treefa7b74195b4ecd69c6e6ddba54ff994aef835f0d /docs
parent651cc369ad803e116268c5ec7f0f8389858ae10b (diff)
[1.8.x] Fixed #24278 -- Fixed serialization of migration operations.
Fixed MigrationWriter.serialize() to correctly handle migration operations by utilizing OperationWriter. Thanks Piotr MaliƄski for the report. Backport of e8e4f978dd4b7a3d0c689c6e3301e3c6f9e50003 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.8.1.txt b/docs/releases/1.8.1.txt
index c848fc2c30..303a793be2 100644
--- a/docs/releases/1.8.1.txt
+++ b/docs/releases/1.8.1.txt
@@ -17,3 +17,7 @@ Bugfixes
* Prevented ``TypeError`` in translation functions ``check_for_language()`` and
``get_language_bidi()`` when translations are deactivated (:ticket:`24569`).
+
+* Fixed :djadmin:`squashmigrations` command when using
+ :class:`~django.db.migrations.operations.SeparateDatabaseAndState`
+ (:ticket:`24278`).