-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
68 lines (68 loc) · 1.24 KB
/
schema.json
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
[
{
"database": "postgres",
"index": "categories",
"nodes": {
"table": "TutorialCategory",
"columns": [
"id",
"categoryname"
]
}
},
{
"database": "postgres",
"index": "tutorials",
"nodes": {
"table": "Tutorial",
"columns": [
"id",
"tutorialname",
"tutorialdescription",
"categoryid",
"status"
]
}
},
{
"database": "postgres",
"index": "topics",
"nodes": {
"table": "TutorialTopic",
"columns": [
"id",
"topicname",
"topicdescription",
"tutorialid"
]
}
},
{
"database": "postgres",
"index": "subtopics",
"nodes": {
"table": "TutorialSubTopic",
"columns": [
"id",
"subtopicname",
"subtopicdescription",
"topicid",
"content"
]
}
},
{
"database": "postgres",
"index": "oss",
"nodes": {
"table": "oss1",
"columns": [
"id",
"c1",
"c2",
"t",
"updated_at"
]
}
}
]