Production 서버와 Dev 서버를 분리해서 개발하는 게 보통인데, 이럴 경우 데이터를 옮기는 방법이다.
python manage.py dumpdata --natural-foreign --natural-primary --exclude contenttypes --exclude auth --exclude admin.logentry --indent 4 > my_db.json
content type과 auth permission, auth group과 관련된 데이터를 미리 설정해두고
위 dump 명령어를 통해 데이터를 덤프 뜬다.
python manage.py loaddata my_db.json