Setting db charset and collation is important for our fixtures to load.

This commit is contained in:
Dave Dash 2010-03-10 10:51:40 -08:00
Родитель 8e22b67e41
Коммит a4df2c3325
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -8,6 +8,8 @@ DATABASES = {
'USER': 'jbalogh',
'PASSWORD': 'xxx',
'OPTIONS': {'init_command': 'SET storage_engine=InnoDB'},
'TEST_CHARSET': 'utf8',
'TEST_COLLATION': 'utf8_general_ci',
},
}