fix @Lob
This commit is contained in:
@@ -38,7 +38,7 @@ public class BorrowItem implements UserData {
|
||||
@Column(name = "name", nullable = false)
|
||||
private String name;
|
||||
@Lob
|
||||
@Column(name = "description", nullable = true)
|
||||
@Column(name = "description", nullable = true, length = 100000)
|
||||
private String description;
|
||||
@Column(name = "url", nullable = true)
|
||||
private String url;
|
||||
|
||||
@@ -41,10 +41,10 @@ public class BorrowRequest implements UserData {
|
||||
@Column(name = "ends", nullable = false)
|
||||
private Instant ends;
|
||||
@Lob
|
||||
@Column(name = "reply", nullable = true)
|
||||
@Column(name = "reply", nullable = true, length = 100000)
|
||||
private String reply;
|
||||
@Lob
|
||||
@Column(name = "comment", nullable = true)
|
||||
@Column(name = "comment", nullable = true, length = 100000)
|
||||
private String comment;
|
||||
@Transient
|
||||
private BorrowItem borrowItem;
|
||||
|
||||
Reference in New Issue
Block a user