788 | | The ``update()`` method is applied instantly and doesn't return anything |
789 | | (similar to ``delete()``). The only restriction on the ``QuerySet`` that is |
790 | | updated is that it can only access one database table, the model's main |
791 | | table. So don't try to filter based on related fields or anything like that; |
792 | | it won't work. |
| 788 | The ``update()`` method is applied instantly and returns the number of rows |
| 789 | affected by the query. The only restriction on the ``QuerySet`` that is updated |
| 790 | is that it can only access one database table, the model's main table. So don't |
| 791 | try to filter based on related fields or anything like that; it won't work. |