If I use
using (var db = container.Resolve<IDbConnectionFactory>().Open())
{
if (db.CreateTableIfNotExists<User>())
{
}
}
the table’s string columns have collation latin1_swedish_ci. Is there any way to change this?