We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fc681e commit 9d9b024Copy full SHA for 9d9b024
conversations/api/src/main/java/org/sakaiproject/conversations/api/model/ConversationsComment.java
@@ -25,6 +25,7 @@
25
import javax.persistence.JoinColumn;
26
import javax.persistence.ManyToOne;
27
import javax.persistence.Table;
28
+import javax.persistence.Lob;
29
30
import org.hibernate.annotations.GenericGenerator;
31
@@ -58,7 +59,8 @@ public class ConversationsComment implements PersistableEntity<String> {
58
59
@JoinColumn(name = "TOPIC_ID")
60
private ConversationsTopic topic;
61
- @Column(name = "MESSAGE", length = 255, nullable = false)
62
+ @Lob
63
+ @Column(name = "MESSAGE", nullable = false)
64
private String message;
65
66
@Column(name = "LOCKED")
0 commit comments