This repository has been archived by the owner on May 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
models.dot
29 lines (29 loc) · 2.95 KB
/
models.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
digraph models_diagram {
graph[overlap=false, splines=true]
"Affordance" [shape=Mrecord, label="{Affordance|id :integer\ltitle :string\lnotes :text\lcreated_at :datetime\lupdated_at :datetime\l}"]
"AssistiveTechnology" [shape=Mrecord, label="{AssistiveTechnology|id :integer\ltitle :string\lnotes :text\lcreated_at :datetime\lupdated_at :datetime\l}"]
"BrowserReader" [shape=Mrecord, label="{BrowserReader|id :integer\ltitle :string\lnotes :text\lcreated_at :datetime\lupdated_at :datetime\l}"]
"ContentFileFormat" [shape=Mrecord, label="{ContentFileFormat|id :integer\ltitle :string\lnotes :text\lcreated_at :datetime\lupdated_at :datetime\l}"]
"Feature" [shape=Mrecord, label="{Feature|id :integer\ltitle :string\lnotes :text\laffordance_id :integer\l}"]
"MatrixEntry" [shape=Mrecord, label="{MatrixEntry|id :integer\laffordance_id :integer\lassistive_technology_version_id :integer\lbrowser_reader_version_id :integer\lcontent_format_id :integer\lplatform_version_id :integer\lrenderer_id :integer\lstatus_id :integer\lnotes :text\lcreated_at :datetime\lupdated_at :datetime\l}"]
"Platform" [shape=Mrecord, label="{Platform|id :integer\ltitle :string\lnotes :text\lcreated_at :datetime\lupdated_at :datetime\l}"]
"Renderer" [shape=Mrecord, label="{Renderer|id :integer\ltitle :string\lnotes :text\lcreated_at :datetime\lupdated_at :datetime\l}"]
"Status" [shape=Mrecord, label="{Status|id :integer\ltitle :string\l}"]
"Affordance" -> "Feature" [arrowtail=odot, arrowhead=crow, dir=both color="#D85D58"]
"Affordance" -> "MatrixEntry" [arrowtail=odot, arrowhead=crow, dir=both color="#8E8800"]
"AssistiveTechnology" -> "AssistiveTechnologyVersion" [arrowtail=odot, arrowhead=crow, dir=both color="#2FFEEE"]
"AssistiveTechnology" -> "MatrixEntry" [arrowtail=crow, arrowhead=crow, dir=both color="#E5857C"]
"BrowserReader" -> "BrowserReaderVersion" [arrowtail=odot, arrowhead=crow, dir=both color="#D84EDF"]
"BrowserReader" -> "MatrixEntry" [arrowtail=crow, arrowhead=crow, dir=both color="#D5ED0A"]
"ContentFileFormat" -> "MatrixEntry" [arrowtail=odot, arrowhead=crow, dir=both color="#619EEC"]
"ContentFileFormat" -> "BrowserReader" [arrowtail=crow, arrowhead=crow, dir=both color="#5D3296"]
"MatrixEntry" -> "Affordance" [arrowtail=odot, arrowhead=crow, dir=both color="#74F8E9"]
"MatrixEntry" -> "Comment" [arrowtail=odot, arrowhead=crow, dir=both color="#19107B"]
"MatrixEntry" -> "MediaAttachment" [arrowtail=odot, arrowhead=crow, dir=both color="#54C4CB"]
"MatrixEntry" -> "ContentSource" [arrowtail=crow, arrowhead=crow, dir=both color="#D46E72"]
"Platform" -> "PlatformVersion" [arrowtail=odot, arrowhead=crow, dir=both color="#E54D4C"]
"Platform" -> "MatrixEntry" [arrowtail=crow, arrowhead=crow, dir=both color="#A9EF4D"]
"Renderer" -> "MatrixEntry" [arrowtail=odot, arrowhead=crow, dir=both color="#CD5B66"]
"Renderer" -> "BrowserReader" [arrowtail=crow, arrowhead=crow, dir=both color="#21ECC6"]
"Status" -> "MatrixEntry" [arrowtail=odot, arrowhead=crow, dir=both color="#D30D38"]
}