-
Notifications
You must be signed in to change notification settings - Fork 0
/
codegen.json
41 lines (41 loc) · 1.23 KB
/
codegen.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
{
"models": {
"routine": {
"relationships": {
"routine_fk_performance_total": "one-to-one",
"routine_fk_performance_execution": "one-to-one",
"routine_fk_performance_choreography": "one-to-one",
"routine_fk_performance_music_and_timing": "one-to-one"
}
},
"performance_score": {
"relationships": {
"performance_score_fk_judge": "one-to-one"
}
},
"judge": {
"relationships": {
"judge_fk_user": "one-to-one"
}
},
"event": {
"includes": [
"startgroups.competition",
"startgroups.performance-total-statistic",
"startgroups.performance-execution-statistic",
"startgroups.performance-choreography-statistic",
"startgroups.performance-music-and-timing-statistic"
]
},
"startgroup": {
"includes": [
"routines.performance-total-statistic",
"routines.performance-execution-statistic",
"routines.performance-choreography-statistic",
"routines.performance-music-and-timing-statistic",
"routines.performance-scores",
"routines.performance-scores.judge"
]
}
}
}