Postgresql – postgres enum hibernate 6 takes wrong type name
Here is my setup: spring boot 3 + hibernate 6 + postgres 15 I have an entity with field that is enum: @Slf4j @Getter @Setter @Entity @Table(name = "foo") public class FooEntity { @Column(name = "favorite_fruit_type", nullable = true, columnDefinition…