‘default‘
: {
‘ENGINE‘
:
‘django.db.backends.mysql‘
,
‘NAME‘
:
‘mysql‘
,
‘USER‘
:
‘root‘
,
‘HOST‘
:
‘127.0.0.1‘
,
‘PASSWORD‘
:
‘123‘
,
‘PORT‘
: 3306,
# show variables like ‘character_set_database‘;
# 修改字段字符编码
# alter table spiders_weibo modify text longtext charset utf8mb4 collate utf8mb4_unicode_ci;
‘OPTIONS‘
: {
‘charset‘
:
‘utf8mb4‘
},
}
原文:https://www.cnblogs.com/xiaohaodeboke/p/12576723.html