Django documentation says that default collation be 'utf8' but it isn't. Every time I run syncdb to create new tables the default collation of all character fields is 'latin1_swedish_ci'.
The same documentation also says
Django doesn’t provide a way to set this on the model definition.
Is there any other way I can force django's syncdb to use a specific collation with character fields?