From 4e489b73339762d1350a47da7b369ed5b57761ea Mon Sep 17 00:00:00 2001 From: "gayoun.park" Date: Tue, 18 Nov 2025 12:03:20 +0900 Subject: [PATCH] =?UTF-8?q?update=5Fdttm=20=EC=9D=84=20nullable=20=3D=20tr?= =?UTF-8?q?ue=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/kamco/cd/kamcoback/postgres/CommonDateEntity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/kamco/cd/kamcoback/postgres/CommonDateEntity.java b/src/main/java/com/kamco/cd/kamcoback/postgres/CommonDateEntity.java index b10e54c0..195b182d 100644 --- a/src/main/java/com/kamco/cd/kamcoback/postgres/CommonDateEntity.java +++ b/src/main/java/com/kamco/cd/kamcoback/postgres/CommonDateEntity.java @@ -18,7 +18,7 @@ public class CommonDateEntity { private ZonedDateTime createdDate; @LastModifiedDate - @Column(name = "updated_dttm", nullable = false) + @Column(name = "updated_dttm", nullable = true) //update_dttm 이 없는 테이블이 존재하기 때문에 true 로 선언함 private ZonedDateTime modifiedDate; @PrePersist