Skip to content

Commit

Permalink
[테스트] git actions test 3
Browse files Browse the repository at this point in the history
  • Loading branch information
ethan-sh-lee committed Dec 13, 2023
1 parent 87b3898 commit 677e76d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/example/supersns/post/Post.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class Post {
@Size(min = 1, max = 180, message = "content is should not be greater 1 and less than 180")
private String content;

@ManyToOne(fetch = FetchType.LAZY )
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "user_id", nullable = false)
private User user;

Expand Down

0 comments on commit 677e76d

Please sign in to comment.