django1.8更改了model后要怎样重建数据库
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django1.8更改了model后要怎样重建数据库相关的知识,希望对你有一定的参考价值。
参考技术A 使用命令: py manage.py makemigrations py manage.py migrate删除mysql数据库后django重建数据库
问题:由于表的结构设计的不太合理,后来要添加列,但是在django中使用makemigrations一直失败。
解决:索性就把mysql中对于django的数据库删了(其实也不用删除),在django的models.py中写好表的结构后,再python manage.py makemigrations app_name
python manage.py migrate,就重建成功了。
以上是关于django1.8更改了model后要怎样重建数据库的主要内容,如果未能解决你的问题,请参考以下文章
django1.8 model : Meta options