Skip to content

Commit

Permalink
SysConfig entity: change length of 'value' field down to 8000 (compat…
Browse files Browse the repository at this point in the history
… issues with MSSQL).
  • Loading branch information
fgonzal committed Dec 1, 2020
1 parent 6c70f79 commit 6c42915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/sysconfig/src/main/java/org/jpos/ee/SysConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class SysConfig extends Cloneable implements Serializable {
@Column(length=64)
private String id;

@Column(length=8192)
@Column(length=8000)
private String value;

@Column(length=64)
Expand Down

0 comments on commit 6c42915

Please # to comment.