Skip to content

Commit

Permalink
🚧 update sequence start value
Browse files Browse the repository at this point in the history
  • Loading branch information
nekolr committed Apr 26, 2022
1 parent 1fb653d commit f65e1a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/nekolr/saber/entity/IdSeq.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class IdSeq implements Serializable {

@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "id_seq_sequence")
@SequenceGenerator(name = "id_seq_sequence", initialValue = 329, allocationSize = 1)
@SequenceGenerator(name = "id_seq_sequence", initialValue = 589, allocationSize = 1)
@Id
private Long id;
}

0 comments on commit f65e1a1

Please sign in to comment.