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:
Alexander Schwartz 2024-08-16 10:12:33 +02:00 committed by GitHub
parent 7c1b902155
commit 49d2efbfb2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -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

View file

@ -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