45 | | It is expected that using a force_insert (and a value is provided explicitly or as a default), force_insert should be respected by the parents as well. |
46 | | This isn't fully related to #18305. I believe that ticket also talks about AutoField PKs. |
| 41 | |
| 42 | Changed in Django 3.0: |
| 43 | Model.save() no longer attempts to find a row when saving a new Model instance and a default value for the primary key is provided, and always executes an INSERT. |
| 44 | |
| 45 | |
| 46 | It is expected that using a force_insert (and value is provided explicitly or as a default), force_insert should be respected by the parents as well. |
| 47 | This isn't fully related to #18305. I believe that the ticket also talks about AutoField PKs. |