spring.jpa.properties.hibernate.ddl-auto=create
を変更します spring.jpa.hibernate.ddl-auto=create
へ application.properties
内 ファイルと変更GeneratedValue
Example
の注釈 以下のエンティティ:
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
参考:LiquibaseまたはFlywayライブラリも使用できます。