Skip to content

Commit

Permalink
Event description changed to TEXT
Browse files Browse the repository at this point in the history
  • Loading branch information
harshjohar committed Feb 3, 2024
1 parent e0cf35f commit 3e4d4df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/pecacm/backend/entities/Event.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class Event {
@Column(name = "end_date")
private LocalDateTime endDate;

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

@Column(name = "related_link")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class LoggingInterceptor implements HandlerInterceptor {

@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) {
logger.info("Received request: {} {} Authorization={}", request.getMethod(), request.getRequestURI(), request.getHeader("Authorization"));
logger.info("Received request: {} {}", request.getMethod(), request.getRequestURI());
return true;
}

Expand Down

0 comments on commit 3e4d4df

Please sign in to comment.