Pycharm中Django配置MySQ报错解决方案:
问题描述:
正常配置MySQL:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME':'tedu_note',
'USER':'root',
'PASSWORD':'123456',
'HOST':'127.0.0.1',
'PORT':'3306'
}
}
但是,它报错误,
django.db.migrations.exceptions.MigrationSchemaMissing: Unable to create the django_migrations table ((1064, "You have an error in your SQL syntax; check
the manual that corresponds to your MySQL server version for the right syntax to use near '(6) NOT NULL)' at line 1"))
后来查了一下,原来是Django3.x不适配MySQL5.5(包括5.5)一下,所以你有两个选择:
第一种就是重新安装Django2.x版本 第二种就是重新安装MySQL5.6及以上版本
我选择的是重新安装Django2.x版本:
解决方案:
第一步 第二步: 第三步: ![在这里插入图片描述](https://img-blog.csdnimg.cn/1e3aa267ddfb4d7097e6eb5906797cb9.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3d1c2hpYm83NTA=,size_16,color_FFFFFF,t_70#pic_center
|