Skip to content

Instantly share code, notes, and snippets.

@mikekistler
Last active October 3, 2023 19:37
Show Gist options
  • Save mikekistler/a27831aede662a0edb0c6169fbb9be3d to your computer and use it in GitHub Desktop.
Save mikekistler/a27831aede662a0edb0c6169fbb9be3d to your computer and use it in GitHub Desktop.
Entity Relationship Diagram for Microsoft DevBox

Resources / relationships for Microsoft DevBox

erDiagram
    Project { 
        string name
    }
    
    Catalog {
        string name
    }
    
    CustomizationTask {
        string name
    }
    
    Pool {
        string name
    }
    
    User {
        string id
    }
    
    DevBox {
        string name
    }
    
    CustomizationGroup {
        string name
    }
    
    Project ||--|{ Catalog : has
    
    Catalog ||--|{ CustomizationTask : has
    
    Project ||--|{ Pool : has
    
    Project ||--|{ User : has
    
    User ||--|{ DevBox : has
    
    DevBox ||--|{ CustomizationGroup : has 
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment