Skip to content

Commit

Permalink
Merge pull request #533 from virtualidentityag/VIC-838-fix-sequence-name
Browse files Browse the repository at this point in the history
Vic 838 fix sequence name
  • Loading branch information
patric-dosch-vi authored Oct 20, 2022
2 parents 403938d + 29d0c2e commit cff640e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
public class UserChat {

@Id
@SequenceGenerator(name = "id_seq", allocationSize = 1, sequenceName = "sequence_chat_user")
@SequenceGenerator(name = "id_seq", allocationSize = 1, sequenceName = "sequence_user_chat")
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "id_seq")
@Column(name = "id", updatable = false, nullable = false)
@EqualsAndHashCode.Include
Expand Down

0 comments on commit cff640e

Please sign in to comment.