Skip to content

Commit

Permalink
fix: removed @lob annotation that leads to issues
Browse files Browse the repository at this point in the history
  • Loading branch information
melistik committed Aug 22, 2024
1 parent 77dc2ba commit 5d9687c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ public class AppInviteJpaEntity implements AppInviteEntity {
indexes = @Index(name = "idx_invite_keyvalue", columnList = "invite_id")
)
@MapKeyColumn(name = "field_key", length = 50)
@Lob
@Column(name = "field_value", nullable = false)
@Builder.Default
private Map<String, String> keyValueMap = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ public class AppUserJpaEntity implements AppUserEntity {
indexes = @Index(name = "idx_user_keyvalue", columnList = "user_id")
)
@MapKeyColumn(name = "field_key", length = 50)
@Lob
@Column(name = "field_value", nullable = false)
@Builder.Default
private Map<String, String> keyValueMap = new HashMap<>();
Expand Down

0 comments on commit 5d9687c

Please sign in to comment.