JPA generates incorrect SQL query for MySql8 with columdefinition
I am using Springboot JPAs to generate a MySql8 table. It works fine unless I try to use the columndefinition in the Column annotation. @Column(columnDefinition = "boolean default false") private Boolean example; I tried replacing boolean with TINYINT but MySql8…