I am working on a custom Datatype an i want to have different db data type per dbms.
So i use
@Ddl(dbms = "postgres", value = "jsonb")
@Ddl("CLOB")
public class MyDatatype implements Datatype<My> {
...
}
But studio generates SQL with varchar(255)
in all dbms.
If i remove @Ddl("CLOB")
and use postgres it works as expected.
What can i do?