Skip to content

Commit

Permalink
Merge pull request #191 from fgonzal/master
Browse files Browse the repository at this point in the history
Sort out compatibility issues with Microsoft SQL Server regarding max field lengths.
  • Loading branch information
ar authored Dec 1, 2020
2 parents 09634af + 6c42915 commit f23dfec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/eeuser/src/main/java/org/jpos/ee/Realm.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class Realm implements Serializable {
@Column(length=64)
private String name;

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

public Long getId() {
Expand Down
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 f23dfec

Please # to comment.