Django:报错 raise MigrationSchemaMissing("Unable to create the django_migrations table (%s)" % exc)

Django 执行迁移生成表:

python manage.py migrate

报错:

raise MigrationSchemaMissing("Unable to create the django_migrations table (%s)" % exc)

 

原因:

Django2.1不再支持MySQL5.5,必须5.6版本以上

 

解决办法:

二选一

(1)Django降级到2.0

pip install Django==2.0.0 -i https://pypi.douban.com/simple

(2)MySQL升级

 

posted @ 2018-10-27 22:14  Tester北柯郡  阅读(7619)  评论(0编辑  收藏  举报