django数据迁移问题

Posted 35xiaoyi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django数据迁移问题相关的知识,希望对你有一定的参考价值。

 

执行:<python manage.py makemigrations>时,出现:

django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is requ
ired; you have 0.9.3.

如下图:

技术图片

解决方法:

进入终端中提示的路径:

技术图片

(C:\\Users\\Administrator\\AppData\\Local\\Programs\\Python\\Python37\\lib\\site-p
ackages\\django\\db\\backends\\mysql\\base.py),用文本打开,找到(

version = Database.version_info
if version < (1, 3, 13):
raise ImproperlyConfigured(‘mysqlclient 1.3.13 or newer is required; you have %s.‘ % Database.__version__)

)并将以下两行注释掉,如下:

技术图片

 

若报以下故障代码:

query = query.decode(errors=‘replace‘)
AttributeError: ‘str‘ object has no attribute ‘decode‘

如下:

技术图片

修复方法:

进入此路径下:

C:\\Users\\Administrator\\AppData\\Local\\Programs\\Python\\Python37\\lib\\site-p
ackages\\django\\db\\backends\\mysql\\operations.py

如下:

技术图片

,以文本格式打开,将decode改为encode

如下:

技术图片

---问题解决。

以上是关于django数据迁移问题的主要内容,如果未能解决你的问题,请参考以下文章

迁移 Django 固定装置?

Django:迁移错误中的加载数据

django迁移过后没有数据库

在 Django 数据迁移中手动提交

石墨烯代码在 Django 数据迁移之前运行

为还没有任何迁移的 Django 项目创建迁移