Specify version column name in a case-sensitive manner (#32190)

Closes #32127

Signed-off-by: Alexander Schwartz <aschwart@redhat.com>
This commit is contained in:
Alexander Schwartz 2024-08-16 13:27:37 +02:00 committed by GitHub
parent 6dbe66b3a0
commit 31d393a12a
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;
@Version
@Column(name="VERSION")
private int version;
@Id

View File

@ -86,6 +86,7 @@ public class PersistentUserSessionEntity {
protected String brokerSessionId;
@Version
@Column(name="VERSION")
private int version;
@Id