Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 234 Bytes

README.md

File metadata and controls

16 lines (15 loc) · 234 Bytes
erDiagram
    PRODUCT {
        int id
        string name
        int price
        int discount_policy
    }
    ORDER {
        int id
        int product_id
        int quantity
    }
    PRODUCT ||--o| ORDER : has
Loading