When using Grails 1.1 together with a MySQL the charsets of the auto-generated database tables seem to default to ISO-8859-1. I'd rather have everything stored as pure UTF-8. Is that possible?
From the auto-generated database definitions:
ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
Note the "latin1" part.
A work-around that works for Grails 1.0 is described here. This work-arounds does not appear to work when using Grails 1.1. The dataSource.dialect parameter seems to be ignored.