I have a .sql file from one of my production servers, and am now trying to load it into the database of another. I tried python manage.py loaddata, but its giving me an error
CommandError: Problem installing fixture 'social': sql is not a known serialization format.
How can I load my data into postgres from a .sql file with manage.py ?
Django managment doesn't work with SQL as per documentation on initial data
If you still want to load data with SQL you could make data migration