How to specify the length of the varchar columns in bytes

I am trying to specify  the length of one of the varchar columns in bytes, like below, instead of as number of  characters

 

But liquibase throws an error at that line when it is executed, how to specify the length in bytes?

The problem is that when we are parsing the java.sql.Types.VARCHAR string we are just expecting a single number, like .

If you are actually needing to specify the size as bytes, you will have to switch to without the “java.sql.Types”

Nathan