Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class Product extends BaseEntity {
@Column(name = "product_name", nullable = false)
private String productName;

@Column(name = "product_image", nullable = true)
@Column(name = "product_image", nullable = true, length = 2048)
private String productImage;

@Enumerated(EnumType.STRING)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ public class ProductInfoImage extends BaseEntity {
@JoinColumn(name = "product_id")
private Product product;

@Column(name = "image_url", nullable = false)
@Column(name = "image_url", nullable = false,length = 2048)
private String imageUrl;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@ public enum RawMaterialCategory {
COMPLEX_CARBOHYDRATE,
REFINED_CARBOHYDRATE,
ADDITIVES,
SOLUBLE_DIETARY_FIBER,
INSOLUBLE_DIETARY_FIBER,
OTHERS
}
Loading