From b69a80ce8aa4a9e92bd18b09514fe8eec6ecbbd7 Mon Sep 17 00:00:00 2001 From: gahyuun Date: Fri, 17 Jan 2025 04:28:03 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20image=20nullable=20=EC=84=A4=EC=A0=95?= =?UTF-8?q?=20(#20)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/acon/server/spot/infra/entity/MenuEntity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/acon/server/spot/infra/entity/MenuEntity.java b/src/main/java/com/acon/server/spot/infra/entity/MenuEntity.java index 01bb12c..21cfc32 100644 --- a/src/main/java/com/acon/server/spot/infra/entity/MenuEntity.java +++ b/src/main/java/com/acon/server/spot/infra/entity/MenuEntity.java @@ -29,7 +29,7 @@ public class MenuEntity { @Column(name = "spot_id", nullable = false) private Long spotId; - @Column(name = "image", nullable = false) + @Column(name = "image") private String image; @Column(name = "name", nullable = false)