Mariadb fix: blob is a reserved keyword

This commit is contained in:
Roland Praml
2022-01-05 16:38:56 +01:00
parent 1ff0d78170
commit bb91b5319d
@@ -23,7 +23,7 @@ public class OtoLevelBLazy {
private OtoLevelALazy a;
@Lob
private String blob;
private String blb;
public OtoLevelBLazy(String name) {
this.name = name;
@@ -62,15 +62,15 @@ public class OtoLevelBLazy {
}
protected void recalc() {
this.getBlob();
this.getBlb();
}
public String getBlob() {
return blob;
public String getBlb() {
return blb;
}
public void setBlob(String blob) {
this.blob = blob;
public void setBlb(String blb) {
this.blb = blb;
}
}