Ubah spring.jpa.properties.hibernate.ddl-auto=create ke spring.jpa.hibernate.ddl-auto=create di application.properties file Dan Ubah GeneratedValue anotasi di Example entitas seperti di bawah ini:
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
FYI:Anda juga dapat menggunakan perpustakaan Liquibase atau Flyway.