Skip to content

Commit

Permalink
[#12048] Change title and message field for notification to "TEXT" (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasCwy authored Mar 10, 2024
1 parent 67404f3 commit b48dabb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/teammates/storage/sqlentity/Notification.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ public class Notification extends BaseEntity {
@Enumerated(EnumType.STRING)
private NotificationTargetUser targetUser;

@Column(nullable = false)
@Column(nullable = false, columnDefinition = "TEXT")
private String title;

@Column(nullable = false)
@Column(nullable = false, columnDefinition = "TEXT")
private String message;

@Column(nullable = false)
Expand Down

0 comments on commit b48dabb

Please sign in to comment.