summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/django-admin.txt9
-rw-r--r--docs/releases/1.8.txt3
2 files changed, 9 insertions, 3 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index 7ceddb9cc2..fe1d8dbc38 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -383,14 +383,17 @@ onto which the data will be loaded.
.. django-admin-option:: --ignorenonexistent
-The :djadminopt:`--ignorenonexistent` option can be used to ignore fields that
-may have been removed from models since the fixture was originally generated.
-
+The :djadminopt:`--ignorenonexistent` option can be used to ignore fields and
+models that may have been removed since the fixture was originally generated.
.. versionchanged:: 1.7
``--app`` was added.
+.. versionchanged:: 1.8
+
+ ``--ignorenonexistent`` also ignores non-existent models.
+
.. django-admin-option:: --app
The :djadminopt:`--app` option can be used to specify a single app to look
diff --git a/docs/releases/1.8.txt b/docs/releases/1.8.txt
index 94a4f3ed74..6b0cb85058 100644
--- a/docs/releases/1.8.txt
+++ b/docs/releases/1.8.txt
@@ -145,6 +145,9 @@ Management Commands
:djadminopt:`--exclude` which allows exclusion of specific locales from
processing.
+* The :djadminopt:`--ignorenonexistent` option of the :djadmin:`loaddata`
+ management command now ignores data for models that no longer exist.
+
Models
^^^^^^