So usually in django you have an app let's say common you create and inside it can have a model lets say Site and you can dumpdata from the model like so python manage.py dumpdata common.site > sites.json and it works but this python manage.py loaddata common.site < sites.json doesn't work.
I'm curious if this is possible or not, if you know how to please share an example.