Skip to content

Commit

Permalink
[#101] fix: 필요없는 필드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
shin-mallang committed Nov 28, 2023
1 parent e50fa84 commit 54cae4b
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,12 @@ public class PostViewHistory extends CommonHistory {
@Column(name = "uuid", nullable = false)
private UUID uuid;

private String blogName;

@Column(nullable = false)
private PostId postId;

public PostViewHistory(UUID uuid, PostId postId, LocalDateTime createdDate) {
super(createdDate);
this.uuid = uuid;
this.blogName = blogName;
this.postId = postId;
}
}

0 comments on commit 54cae4b

Please sign in to comment.