We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae94e68 commit c81a784Copy full SHA for c81a784
1 file changed
src/main/java/edu/tamu/app/model/Service.java
@@ -4,7 +4,6 @@
4
import static javax.persistence.CascadeType.REMOVE;
5
import static javax.persistence.FetchType.EAGER;
6
7
-import java.io.UnsupportedEncodingException;
8
import java.util.ArrayList;
9
import java.util.HashSet;
10
import java.util.List;
@@ -15,8 +14,6 @@
15
14
import javax.persistence.Entity;
16
import javax.persistence.Lob;
17
import javax.persistence.OneToMany;
18
-import javax.persistence.PrePersist;
19
-import javax.persistence.PreUpdate;
20
import javax.validation.constraints.Size;
21
22
import org.hibernate.annotations.Fetch;
@@ -60,7 +57,7 @@ public class Service extends BaseEntity {
60
57
@Column(nullable = false)
61
58
private Boolean onShortList;
62
59
63
-// @Lob
+ @Lob
64
@Column(nullable = true)
65
private String description;
66
0 commit comments