From 322da9eb4aa1a094fd665c7162c72691cbc1872a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=ED=95=9C=EA=B4=80=ED=9D=AC?= Date: Mon, 16 Sep 2024 00:23:56 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20Password=EC=97=90=20Null=EC=9D=84?= =?UTF-8?q?=20=ED=97=88=EC=9A=A9=20(#31)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/stempo/api/domain/persistence/entity/UserEntity.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/com/stempo/api/domain/persistence/entity/UserEntity.java b/src/main/java/com/stempo/api/domain/persistence/entity/UserEntity.java index c4bd8cb9..ef8e07be 100644 --- a/src/main/java/com/stempo/api/domain/persistence/entity/UserEntity.java +++ b/src/main/java/com/stempo/api/domain/persistence/entity/UserEntity.java @@ -26,7 +26,6 @@ public class UserEntity extends BaseEntity { @Id private String deviceTag; - @Column(nullable = false) private String password; @Enumerated(EnumType.STRING)