I am looking for help, Using Django1.5/Python2.7.3.
I have two applications A and B. A equals B, the only difference is the ID, but the titles and slug are equal.
I wonder if can with "loaddata" import A> B and B> A,
Example:
python manage.py dumpdata myapp.A > a.json
Here loadata myapp.B
python manage.py loaddata a.json
The idea is to insert content that has no "B", but if it contains "A", my problem its pk.
Any suggestions.
*Update***
Finally fix it by serializing keys (pk) with natural keys. Django serializers natural keys
Thanks.