With reference to https://code.djangoproject.com/ticket/27408
, is there a way to populate the fields on the related model during bulk_create?
Currently, we have to use a for loop to populate related model fields and then use bulk create which is really slow.
We are using MySql Database so bulk_create does not return id lists so it also can’t be used.