From 54cae4bfb4e39f30898502729ca1ac3c9ada4585 Mon Sep 17 00:00:00 2001 From: shin-mallang Date: Wed, 29 Nov 2023 01:59:59 +0900 Subject: [PATCH] =?UTF-8?q?[#101]=20fix:=20=ED=95=84=EC=9A=94=EC=97=86?= =?UTF-8?q?=EB=8A=94=20=ED=95=84=EB=93=9C=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mallang/statistics/statistic/source/PostViewHistory.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/com/mallang/statistics/statistic/source/PostViewHistory.java b/src/main/java/com/mallang/statistics/statistic/source/PostViewHistory.java index 1aa3e335..ff7fffbc 100644 --- a/src/main/java/com/mallang/statistics/statistic/source/PostViewHistory.java +++ b/src/main/java/com/mallang/statistics/statistic/source/PostViewHistory.java @@ -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; } }