Ignore:
Timestamp:
05/06/25 00:44:02 (12 days ago)
Author:
Aleksandar Panovski <apano77@…>
Branches:
main
Children:
e48199a
Parents:
142c0f8
Message:

Normalization needed to continue, till here done

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/com/example/rezevirajmasa/demo/model/Menu.java

    r142c0f8 rb67dfd3  
    2626    private String itemName;
    2727
    28     @Column(name = "category", length = 50)
    29     private String category;
     28    @Column(name = "menuCategory", length = 50)
     29    private String menuCategory;
    3030
    3131    @Column(name = "price", precision = 8, scale = 2)
     
    4545        this.restaurant = restaurant;
    4646        this.itemName = itemName;
    47         this.category = category;
     47        this.menuCategory = category;
    4848        this.price = price;
    4949        this.description = description;
Note: See TracChangeset for help on using the changeset viewer.