Drop usage of identity generator

This commit is contained in:
Christian Beikov 2023-03-06 09:50:34 +01:00
parent 464825c8d6
commit 58d2f4e039
1 changed files with 2 additions and 2 deletions

View File

@ -170,7 +170,7 @@ public class QueryPredicateAndParameterComparableTest {
private Set<Submission> submissions;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@GeneratedValue
public int getId() {
return id;
}
@ -221,7 +221,7 @@ public class QueryPredicateAndParameterComparableTest {
}
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@GeneratedValue
public int getSubmissionid() {
return submissionid;
}