The default mapping for Enums is using an Integer. If you want to save them as a String, you need to add @Enumerated(EnumType.STRING) Annotation above your Enum field.
@Enumerated(EnumType.STRING)