我收到以下错误:
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")