I am very new to Django so not sure how to approach this problem:
I have a large number of models that need to be populated. They have one to many relationships as well as some MPTT relationships. What is the best way to create these? I've seen bulk_create but since it does not create PKs I don't think this will be useful.
I'm thinking about going around the ORM and uploading directly to the database, but I am afraid this will break django. Would this work? (any examples), or perhaps I should be using something like South?