I'm trying to move data from our QA servers to production (or dev->local, qa->dev, etc.) with the Django dumpdata and loaddata commands. I've successfully got things exported that have no foreign dependencies, like so:
python manage.py dumpdata --natural-foreign --indent=4 snippets.somemodel
When trying to migrate content-heavy models (with things like users, documents, images attached to them), I get lots of foreign key complaints. This is particularly problematic because users, documents, images are different across all the environments. I would love to be able to just move the content and ignore things that depend on foreign keys - is that possible?