summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/querysets.txt4
-rw-r--r--docs/releases/1.9.txt3
2 files changed, 7 insertions, 0 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index a333ce7b56..039fea3dbc 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -1768,6 +1768,10 @@ This has a number of caveats though:
does not retrieve and set the primary key attribute, as ``save()`` does.
* It does not work with many-to-many relationships.
+.. versionchanged:: 1.9
+
+ Support for using ``bulk_create()`` with proxy models was added.
+
The ``batch_size`` parameter controls how many objects are created in single
query. The default is to create all objects in one batch, except for SQLite
where the default is such that at most 999 variables per query are used.
diff --git a/docs/releases/1.9.txt b/docs/releases/1.9.txt
index b1a799f8bf..3dc76dbd12 100644
--- a/docs/releases/1.9.txt
+++ b/docs/releases/1.9.txt
@@ -365,6 +365,9 @@ Management Commands
Models
^^^^^^
+* :meth:`QuerySet.bulk_create() <django.db.models.query.QuerySet.bulk_create>`
+ now works on proxy models.
+
* Database configuration gained a :setting:`TIME_ZONE <DATABASE-TIME_ZONE>`
option for interacting with databases that store datetimes in local time and
don't support time zones when :setting:`USE_TZ` is ``True``.