diff options
author | Simon Charette <charette.s@gmail.com> | 2016-01-25 14:27:35 -0500 |
---|---|---|
committer | Simon Charette <charette.s@gmail.com> | 2016-01-25 21:38:36 -0500 |
commit | 4dcaa5871b70859952c6f9c437dfe1b5f10509f2 (patch) | |
tree | b67b44293702762314d86f7d625588c69acb1ca1 /docs/releases/1.9.2.txt | |
parent | 229488c8a1486f25b1f2b5ca422cac67708c6c9d (diff) | |
download | django-4dcaa5871b70859952c6f9c437dfe1b5f10509f2.tar.gz |
Fixed #26135 -- Adjusted the migration questioner's handling of disabled apps.
This was causing an issue when calling the `migrate` command in a test case with
the `available_apps` attribute pointing to an application with migrations
disabled using the `MIGRATION_MODULES` setting.
Thanks to Tim Graham for the review.
Refs #24919
Diffstat (limited to 'docs/releases/1.9.2.txt')
-rw-r--r-- | docs/releases/1.9.2.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.9.2.txt b/docs/releases/1.9.2.txt index e64c62e3da..1612a938a2 100644 --- a/docs/releases/1.9.2.txt +++ b/docs/releases/1.9.2.txt @@ -71,3 +71,7 @@ Bugfixes * Fixed a crash when using a reverse ``OneToOneField`` in ``ModelAdmin.readonly_fields`` (:ticket:`26060`). + +* Fixed a crash when calling the ``migrate`` command in a test case with the + ``available_apps`` attribute pointing to an application with migrations + disabled using the ``MIGRATION_MODULES`` setting (:ticket:`26135`). |