Skip to content

Commit cff3ca5

Browse files
committed
fix: Story Entity 의 description nullable 허용
1 parent 6310773 commit cff3ca5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/eatda/domain/story/Story.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class Story extends AuditingEntity {
5454
@Column(name = "store_category", nullable = false)
5555
private StoreCategory storeCategory;
5656

57-
@Column(name = "description", nullable = false)
57+
@Column(name = "description")
5858
private String description;
5959

6060
@NotNull

0 commit comments

Comments
 (0)