发布时间:2019-07-02 13:39:03编辑:auto阅读(2374)
# 方式一
#
find . -path "*/migrations/*.py" -not -name "__init__.py" -delete
find . -path "*/migrations/*.pyc" -delete
#
python manage.py makemigrations
python manage.py migrate
# 方式二
# 查看migrations
python manage.py showmigrations
# 删除migrations文件,硬清理migration
find . -path "*/migrations/*.py" -not -name "__init__.py" -delete
find . -path "*/migrations/*.pyc" -delete
# 软清理Migration
python manage.py migrate --fake yourapp zero
# 查看migrations
python manage.py showmigrations
# 生成migrations
python manage.py makemigrations
# 虚拟重置Migrate
python manage.py migrate --fake-initial
# 方式三
# 新起一个Django Project
# 配置服务器连接
# 配置Model
# makemigrations
# migrate
# 注意:
django插件的重置,需要到site-packages目录下删除migrations文件
# 参考连接
export REFER_PAGE="https://simpleisbetterthancomplex.com/tutorial/2016/07/26/how-to-reset-migrations.html"
上一篇: python学习之列表
下一篇: Python 学习日记第二篇 -- 列表
49036
48182
38912
36046
30457
27233
26246
21081
20917
19252
107°
168°
135°
798°
865°
847°
858°
815°
783°
936°