File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/kotlin/gogo/gogostage/domain/community Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class Board(
3838 val createdAt : LocalDateTime ,
3939
4040 @Column(name = " image_url" , length = 800 , nullable = true )
41- val imageUrl : String ,
41+ val imageUrl : String? ,
4242) {
4343
4444 fun minusLikeCount () {
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ data class WriteCommunityBoardDto(
1616 val content : String ,
1717 @NotNull
1818 val gameCategory : GameCategory ,
19- val imageUrl : String ,
19+ val imageUrl : String? ,
2020)
2121
2222data class GetCommunityBoardResDto (
@@ -49,7 +49,7 @@ data class GetCommunityBoardInfoResDto(
4949 val isLiked : Boolean ,
5050 @JsonFormat(shape = JsonFormat .Shape .STRING , pattern = " yyyy-MM-dd'T'HH:mm:ss" )
5151 val createdAt : LocalDateTime ,
52- val imageUrl : String ,
52+ val imageUrl : String? ,
5353 val stage : StageDto ,
5454 val commentCount : Int ,
5555 val comment : List <CommentDto >
You can’t perform that action at this time.
0 commit comments