django继承User表导致的问题

2018-11-26 07:59:56来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

扩展默认的auth_user表参考:

http://www.cnblogs.com/liwenzhou/p/9030211.html#undefined

django继承修改 User表时,python  manage.py  makemigrations进行python  manage.py  migrate操作时会导致的问题如图:

根源:
django文档中有注明:

Due to limitations of Django’s dynamic dependency feature for swappablemodels, the model referenced by AUTH_USER_MODEL must be created inthe first migration of its app (usually called 0001_initial); otherwise,you’ll have dependency issues.

因此如果涉及到修改用户表,一定要保证用户表的migration编号是0001_,否则会有依赖性问题。

 

解决办法:
1.清空(删除)数据库,清除文件中的migrations文件夹(除了__init__.py文件)

2.现在执行 python  manage.py  makemigrations 和 python  manage.py  migrate 操作即可成功。


参考博文:

http://www.cnblogs.com/liwenzhou/p/9030211.html#undefined

https://blog.csdn.net/u010377372/article/details/78426372?utm_source=blogxgwz5

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:第二十八天- tcp下的粘包和解决方案

下一篇:Python学习之旅(十二)