MySql ormlite - Create Table with specific collation for all columns

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?

Not in code, set the default collation for the database in MySQL.