I have some classes in my java spring boot project. I use jpa and xampp for localhost. All the Entity classes work and create tables for every @Entity class. But this class does not work. Why?
@AllArgsConstructor
@NoArgsConstructor
@Data
@Entity
public class Match {
@Id
private String matchId;
@Enumerated
private MatchType matchType;
}