Test to add utf8mb4 encoding for mysql

This commit is contained in:
Griatch 2019-03-20 21:58:43 +01:00
parent 943ac9dbfb
commit d8adc9b817
2 changed files with 5 additions and 2 deletions

View file

@ -47,7 +47,10 @@ DATABASES = {
'HOST': 'localhost',
'PORT': '', # use default port
'TEST': {
'NAME': 'default'
'NAME': 'default',
'OPTIONS': {
'ENCODING': 'utf8mb4'
}
}
}
}