我新建users应用,然后在models.py写了UserProfile类,并生成了users_userprofile等数据表。这样就用 users_userprofile替换了auth_user。本以为大功告成,但是在Django admin 添加用户时报错了,其显示的错 误样式大致如下:
IntegrityError …… cannot add or update a child row a foreign key constraint fails …… django_admin_log…… auth_user……
其解决办法是:
Django_admin_log数据表的user_id作为外键,原来的设置是指向auth_user数据表。把原来的设置删除,然后自己重新设置user_id,将其指向users_userprofile数据表