#5 -- Fix table identity strategy
Some checks failed
CI fuzzy controller / container-test-job (push) Failing after 11s
Some checks failed
CI fuzzy controller / container-test-job (push) Failing after 11s
This commit is contained in:
parent
47059bc2de
commit
c33680fd66
@ -12,7 +12,7 @@ import java.io.Serializable;
|
|||||||
@MappedSuperclass
|
@MappedSuperclass
|
||||||
public abstract class BaseEntity implements Serializable, Comparable<BaseEntity> {
|
public abstract class BaseEntity implements Serializable, Comparable<BaseEntity> {
|
||||||
@Id
|
@Id
|
||||||
@GeneratedValue(strategy = GenerationType.TABLE)
|
@GeneratedValue(strategy = GenerationType.SEQUENCE)
|
||||||
private Integer id;
|
private Integer id;
|
||||||
|
|
||||||
@Version
|
@Version
|
||||||
|
Loading…
x
Reference in New Issue
Block a user