From 6091b69d7cb7738b075233213608f029cd222c66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=ED=98=9C=EC=88=98?= Date: Tue, 20 Feb 2024 23:45:44 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20Stores=20nullable=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/example/ReviewZIP/domain/store/Stores.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/com/example/ReviewZIP/domain/store/Stores.java b/src/main/java/com/example/ReviewZIP/domain/store/Stores.java index 747f84b..960e3b0 100644 --- a/src/main/java/com/example/ReviewZIP/domain/store/Stores.java +++ b/src/main/java/com/example/ReviewZIP/domain/store/Stores.java @@ -20,13 +20,10 @@ public class Stores extends BaseEntity { @Column(name = "id") private Long id; - @Column(nullable = false) private String name; - @Column(nullable = false) private String address_name; - @Column(nullable = false) private String road_address_name; @Column(nullable = false)