Depending on the length of the columns, generate the appropriate MySql column types.
Probably something like ...in MySqlPlatform... register a special DbType for VARCHAR, CLOB, BINARY, BLOB ... that depending on the "deployLength" renders as VARCHAR, MEDIUMCLOB, CLOB etc
Aka... create a class that extends DbType .. to override the method:
public String renderType(int deployLength, int deployScale);
Added MySqlClob and MySqlBlob objects to handle the switching between types depending on the deployment length.
Fixed in HEAD.