- size only applies for strings, no need here (cleanup)
- updated jar(s)
*/
@Id
@GeneratedValue (strategy = GenerationType.IDENTITY)
- @Column (name = "category_id", length = 20, nullable = false)
+ @Column (name = "category_id", nullable = false)
private Long categoryId;
/**
* Item amount
*/
@Basic (optional = false)
- @Column (name = "order_amount", length = 20, nullable = false)
+ @Column (name = "order_amount", nullable = false)
private Long orderedAmount;
/**
*/
@Id
@GeneratedValue (strategy = GenerationType.IDENTITY)
- @Column (name = "product_id", length = 20, nullable = false, updatable = false)
+ @Column (name = "product_id", nullable = false, updatable = false)
private Long productId;
/**