-
Notifications
You must be signed in to change notification settings - Fork 2
/
db_design.gv
79 lines (65 loc) · 867 Bytes
/
db_design.gv
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
digraph g {
fontname="Helvetica,Arial,sans-serif"
splines=ortho
node [fontname="Helvetica,Arial,sans-serif"]
edge [fontname="Helvetica,Arial,sans-serif"]
node [
fontsize = "16"
];
edge [
];
// nodes
"text" [
label = "Text"
shape = "record"
];
"chapter" [
label = "Chapter"
shape = "record"
];
"manuscript" [
label = "Manuscript"
shape = "record"
];
"line" [
label = "Line"
shape = "record"
];
"mline" [
label = "ManuscriptLine"
shape = "record"
];
"variant" [
label = "Variant"
shape = "record"
];
"fragment" [
label = "Fragment"
shape = "record"
];
// edges
"chapter" -> "text" [
id = 0
];
"manuscript" -> "chapter" [
id = 1
];
"line" -> "chapter" [
id = 2
];
"variant" -> "line" [
id = 3
];
"mline" -> "variant" [
id = 4
];
"mline" -> "manuscript" [
id = 5
];
"fragment" -> "manuscript" [
id = 6
dir = both
style = dashed
xlabel = "museum_number"
];
}