Skip to content

Latest commit

 

History

History
17 lines (17 loc) · 390 Bytes

erDiagram.md

File metadata and controls

17 lines (17 loc) · 390 Bytes
erDiagram
    CAR ||--o{ NAMED-DRIVER : allows
    CAR {
        string allowedDriver FK "The license of the allowed driver"
        string registrationNumber
        string make
        string model
    }
    PERSON ||--o{ NAMED-DRIVER : is
    PERSON {
        string driversLicense PK "The license #"
        string firstName
        string lastName
        int age
    }
Loading