Collate to Collation fix

This commit is contained in:
Griatch 2019-03-20 23:07:02 +01:00
parent 781ea02035
commit 2bc69e1f79

View file

@ -48,13 +48,13 @@ DATABASES = {
'PORT': '', # use default port
'OPTIONS': {
'ENCODING': 'utf8mb4',
'COLLATE': 'utf8mb4_unicode_ci'
'COLLATION': 'utf8mb4_unicode_ci'
},
'TEST': {
'NAME': 'default',
'OPTIONS': {
'ENCODING': 'utf8mb4',
'COLLATE': 'utf8mb4_unicode_ci'
'COLLATION': 'utf8mb4_unicode_ci'
}
}
}