次のエラーが表示されます。
IntegrityError: duplicate key value violates unique constraint "users_userprofile_pkey"
MySQL から Postgres に移行しているので、次を使用して MySQL データベースからデータをダンプしています。
python2.7 manage.py dumpdata --indent=4 --natural > dump.json
dump.json を Postgresql データベースにロードしようとすると、次のエラーが表示されます。
python manage.py loaddata dump.json
ユーザー/モデルに次のシグナルがあります。
post_save.connect(create_user_profile, sender=User, dispatch_uid="user_create_profile")
post_save.connect(create_api_key, sender=User, dispatch_uid="user_create_api_key")