在Django 1.5.12中使用python 2.7.10和South 0.8.4运行迁移文件时出现错误
数据库Mysql@5.7
数据库mysql驱动程序:mysqlclient@1.3.14
我的models.py
from django.db import models
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
class Choice(models.Model):
question = models.ForeignKey(Question)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
我的命令
->它将创建初始迁移文件
->此处错误。
AttributeError: 'Cursor' object has no attribute '_last_executed'
您知道该如何解决吗?