With the generation GenerationType.AUTO hibernate will look for the default hibernate_sequence table , so change generation to IDENTITY as below :
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
With the generation GenerationType.AUTO hibernate will look for the default hibernate_sequence table , so change generation to IDENTITY as below :
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;