Open
Description
Is there a way to define the DB url in such a way that also the COLLATION and CHARSET would get set as below?
'mysql': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'django2',
'USER': 'user',
'PASSWORD': 'password',
'HOST': 'localhost',
'PORT': '3306',
'OPTIONS': {'init_command': 'SET storage_engine=INNODB'},
'STORAGE_ENGINE': 'INNODB',
'COLLATION': 'utf8-general_ci',
'CHARSET': 'utf-8',
},
thanks a lot!