The ordering of columns changes between 3.0 and 3.1. In 3.1, spring data jpa generates columns in alphabetical order, including the ID column, so that my ID column is at the middle of the table
One of the problematic entities:
`@Entity
@Getter
@Setter
@NoArgsConstructor
public class Personne extends Historique {
The ordering of columns changes between 3.0 and 3.1. In 3.1, spring data jpa generates columns in alphabetical order, including the ID column, so that my ID column is at the middle of the table
One of the problematic entities: `@Entity @Getter @Setter @NoArgsConstructor public class Personne extends Historique {
}`
When creating a database with 3.0:
When creating a database with 3.1: