Skip to content

Commit

Permalink
[Gepardec/mega#735] Fix allocationSize of premature sequence to match…
Browse files Browse the repository at this point in the history
… the changeSet
  • Loading branch information
Ollitod committed Sep 13, 2024
1 parent 08a624c commit d785380
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
public class PrematureEmployeeCheckEntity {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "PrematureEmployeeCheck_GEN")
@SequenceGenerator(name = "PrematureEmployeeCheck_GEN", sequenceName = "PrematureEmployeeCheck_SEQ")
@SequenceGenerator(name = "PrematureEmployeeCheck_GEN", sequenceName = "PrematureEmployeeCheck_SEQ", allocationSize = 1)
@Column(name = "id", nullable = false)
private Long id;

Expand Down

0 comments on commit d785380

Please sign in to comment.