In my @Entity class I have defined a boolean property named reservable:
@Column(name="reservable", columnDefinition = "boolean default true")
private boolean reservable;
It is always a column of type TINYINT(1) with default value 1 created. How can I tell Eclipselink to generate a table column of type BOOLEAN in MySql?