Hello. I use Spring Boot When starting, this error occurs Caused by: org.postgresql.util.PSQLException: ERROR: "data" relation already exists

Class with my essence

@Setter @Getter @Entity @Table public class Data implements Serializable { @Id @GeneratedValue(generator = "increment") @GenericGenerator(name = "increment", strategy = "increment") @Column(name = "data_id") private UUID id; @Column(name = "data_description") private String description; public Data(UUID id, String description) { this.id = id; this.description = description; } } 

When I launch it for the first time, there is of course no such error. and here when I start further arises.

    0