Skip to content

Commit

Permalink
refactor(Image): imageUrl nullable=false 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
kingjinyong committed Nov 24, 2024
1 parent b992eac commit 181c4aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ public class Image extends BaseEntity {
@Column(name = "image_id")
private Long id;

@Column
@Column(nullable = false)
private String imageUrl;
}

0 comments on commit 181c4aa

Please sign in to comment.