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;
|
protected int timestamp;
|
||||||
|
|
||||||
@Version
|
@Version
|
||||||
|
@Column(name="VERSION")
|
||||||
private int version;
|
private int version;
|
||||||
|
|
||||||
@Id
|
@Id
|
||||||
|
|
|
@ -86,6 +86,7 @@ public class PersistentUserSessionEntity {
|
||||||
protected String brokerSessionId;
|
protected String brokerSessionId;
|
||||||
|
|
||||||
@Version
|
@Version
|
||||||
|
@Column(name="VERSION")
|
||||||
private int version;
|
private int version;
|
||||||
|
|
||||||
@Id
|
@Id
|
||||||
|
|
Loading…
Reference in a new issue