is it possible to set the DDL type Boolean to all @Basic attributes of type java.lang.Boolean?
I'm using Hibernate, which by default creates an sql bit as DDL type.
Update
I currently solved it Hibernate specific by using a custom org.hibernate.dialect.Dialect
with:
registerColumnType(Types.BOOLEAN, "boolean");