Using Graphviz/Dot Diagrams
brew install graphviz
dot graph.dot -Tpng > graph.pngUsing Graphviz/Dot Diagrams
brew install graphviz
dot graph.dot -Tpng > graph.png| digraph models_diagram { | |
| edge [arrowhead=none]; | |
| "Department" -> "Course" | |
| "Section" -> "Course" | |
| "Section" -> "Instructor" | |
| "Section" -> "Term" | |
| "Student::Skill" -> "Skill" | |
| "Student::Skill" -> "Student" | |
| "Student::Preference" -> "Student" | |
| "Student::Preference" -> "Section" | |
| "Student::Preference" -> "Term" | |
| "Section::RequiredSkill" -> "Section" | |
| "Section::RequiredSkill" -> "Skill" | |
| "Section::RequiredSkill" -> "Instructor" | |
| "Instructor::Preference" -> "Instructor" | |
| "Instructor::Preference" -> "Term" | |
| "Instructor::Preference" -> "Section" | |
| "Instructor::Preference" -> "Student" | |
| } |