0
0
mirror of https://github.com/django/django.git synced 2024-12-01 15:42:04 +01:00

Fixed #18285 -- Documented that bulk_create doesn't work with M2M relationships.

This commit is contained in:
Tim Graham 2014-01-16 20:47:02 -05:00
parent 54d396ff85
commit 9173d2cb74

View File

@ -1625,6 +1625,7 @@ This has a number of caveats though:
* It does not work with child models in a multi-table inheritance scenario. * It does not work with child models in a multi-table inheritance scenario.
* If the model's primary key is an :class:`~django.db.models.AutoField` it * If the model's primary key is an :class:`~django.db.models.AutoField` it
does not retrieve and set the primary key attribute, as ``save()`` does. does not retrieve and set the primary key attribute, as ``save()`` does.
* It does not work with many-to-many relationships.
The ``batch_size`` parameter controls how many objects are created in single 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 query. The default is to create all objects in one batch, except for SQLite