码迷,mamicode.com
首页 > 其他好文 > 详细

Django的坑

时间:2018-09-24 00:50:52      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:model   ase   ror   error   文件   依赖   应用   initial   ups   

自己新增的userprofile表去覆盖原有的auth_user表,遇到的错误:

1

jango1.11 在重写用户模型时报错:

AttributeError: type object ‘UserProfile’ has no attribute ‘USERNAME_FIELD’ models.py -

新建用户模型UserProfile继承自AbstractBaseUser

debug时报错: AttributeError: type object ‘UserProfile‘ has no attribute ‘USERNAME_FIELD‘

在模型中新增两行代码,即可解决

identifier = models.CharField(max_length=40, unique=True)

USERNAME_FIELD = ‘identifier‘

 

2

Django在执行python manage.py makemigrations的时候提示异常:

django.db.migrations.exceptions.InconsistentMigrationHistory: Migration admin.0001_initial is applied before its dependency user.0001_initial on database ‘default‘

原因:Django中有一个原生的User模型类,admin的模型依赖这个模型类,由于前面一个应用中的模型类User继承了AbstractUser类,所以提示这个错误。

解决方案:

删除数据库中 除了auth_user的其他表,然后重新来一次。

参考: https://my.oschina.net/u/1446823/blog/861712

 

 

 

Django在执行python manage.py makemigrations的时候提示异常:

auth.User.groups: (fields.E304) Reverse accessor for ‘User.groups‘ clashes

解决办法:在配置文件中添加:AUTH_USER_MODEL = ‘blog.User‘ 其中blog是应用名,User是模型类名。

参考: https://my.oschina.net/zhangyangyang/blog/736741

Django的坑

标签:model   ase   ror   error   文件   依赖   应用   initial   ups   

原文地址:https://www.cnblogs.com/xiujin/p/9694041.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!