-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat#95 #96
Feat#95 #96
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
validation 처리 감사합니다! 저도 참고해서 반영해두겠습니다!
@@ -27,7 +27,11 @@ public class Card_poll extends BaseEntity { | |||
|
|||
@Column(nullable = true) | |||
@Builder.Default | |||
private Timestamp deadline= Timestamp.valueOf(LocalDateTime.now().plusHours(1)); // 디폴트 시간 1시간 설정. | |||
private LocalDateTime deadline= LocalDateTime.now().plusHours(1); // 디폴트 시간 1시간 설정. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 부분에서 deadline이 -9(UTC 차이)
+ 1
시간인 값이 디폴트로 들어가게 되더라구요..!!
https://red-mimmu.tistory.com/105
이 글 참고해서 한번 서울로 시간 조정되도록 반영해보겠습니다! -> 반영한 커밋 하나 날렸습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
감사합니다!!!
No description provided.