-
Notifications
You must be signed in to change notification settings - Fork 0
/
erd.txt
59 lines (49 loc) · 979 Bytes
/
erd.txt
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
# Visualize on https://erd.surge.sh
# or https://quick-erd.surge.sh
#
# Relationship Types
# - - one to one
# -< - one to many
# >- - many to one
# >-< - many to many
# -0 - one to zero or one
# 0- - zero or one to one
# 0-0 - zero or one to zero or one
# -0< - one to zero or many
# >0- - zero or many to one
#
////////////////////////////////////
keyword
-------
id integer PK
keyword text unique
complete_time integer NULL
image
-----
id integer PK
page_id integer NULL FK >0- page.id
filename text unique
keyword_id integer NULL FK >0- keyword.id
alt text NULL
embedding text NULL
page
----
id integer PK
url text unique
domain_id integer FK >0- domain.id
domain
------
id integer PK
domain text unique
# zoom: 1.000
# view: (36, -42)
# text-bg: #6495ed
# text-color: #000000
# diagram-bg: #f5f5f5
# diagram-text: #000000
# table-bg: #ffffff
# table-text: #000000
# keyword (491, 372)
# image (171, 321)
# page (159, 90)
# domain (489, 118)