Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Latest commit

 

History

History
39 lines (35 loc) · 740 Bytes

technical.md

File metadata and controls

39 lines (35 loc) · 740 Bytes

Technical Documentation

All id fields are of type UUID

Entity Diagram

erDiagram
    licensee ||--o{ assigned-license: "is assigned"
    software ||--o{ assigned-license: "is assigned to"
    licensee {
        string id
        string name
        string email
        string role
        string notes
        date created
        date modified
    }
    software {
        string id
        string title
        string publisher
        string administrator
        string notes
        number quantity
        date renewal
        date created
        date modified
    }
    assigned-license {
        string id
        string licenseeId
        string softwareId
        date created
        date modified
    }

Loading