IntegrityError at /admin/users/userprofile/add/(1452, 'Cannot add or update a child row: a foreign key constraint fails (`mxonline`.`django_admin_log`, CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`))')外键有约束,请问要怎么修改?
3 回答
zhoujielun
TA贡献1条经验 获得超2个赞
方法有2
方法1:取消外键关联,但是我用这个方法的时候,修改setting一直报错。暂时解决不了。
方法2:因为老师在讲课的时候,我们新建的用户是存在user_profile表中的,而auth_user中是没有这个用户的
所以,只需要把表userprofile生成的id为1的数据复制到auth_user,即可生成新用户,亲测有效。
添加回答
举报
0/150
提交
取消