Skip to content

Commit f265514

Browse files
committed
chore(community): 소문자로 네이밍 변경
1 parent f68bb02 commit f265514

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/main/java/com/somemore/community/domain/CommunityComment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
@Getter
1515
@NoArgsConstructor(access = PROTECTED)
1616
@Entity
17-
@Table(name = "Community_comment")
17+
@Table(name = "community_comment")
1818
public class CommunityComment extends BaseEntity {
1919

2020
@Id

src/main/java/com/somemore/community/usecase/comment/CreateCommunityCommentUseCase.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
import java.util.UUID;
66

77
public interface CreateCommunityCommentUseCase {
8-
Long CreateCommunityComment(
8+
Long createCommunityComment(
99
CommunityCommentCreateRequestDto requestDto,
10-
UUID writerId,
11-
Long parentCommunityId);
10+
UUID writerId);
1211
}

0 commit comments

Comments
 (0)