Specify version column name in a case-sensitive manner (#32169)
Closes #32127 Signed-off-by: Alexander Schwartz <aschwart@redhat.com>
This commit is contained in:
parent
7c1b902155
commit
49d2efbfb2
2 changed files with 2 additions and 0 deletions
|
@ -75,6 +75,7 @@ public class PersistentClientSessionEntity {
|
|||
protected int timestamp;
|
||||
|
||||
@Version
|
||||
@Column(name="VERSION")
|
||||
private int version;
|
||||
|
||||
@Id
|
||||
|
|
|
@ -86,6 +86,7 @@ public class PersistentUserSessionEntity {
|
|||
protected String brokerSessionId;
|
||||
|
||||
@Version
|
||||
@Column(name="VERSION")
|
||||
private int version;
|
||||
|
||||
@Id
|
||||
|
|
Loading…
Reference in a new issue