17 lines
561 B
Plaintext
17 lines
561 B
Plaintext
%% 주제 안의 축과 기록을 잇는 자리
|
|
%% question: 하나의 질문에 대한 네 답을 무엇으로 담고, 기록은 어떻게 축에 걸리는가?
|
|
flowchart LR
|
|
subgraph g_record_tables["기록은 종류마다 다른 테이블에 산다"]
|
|
n3[("document")]
|
|
n4[("open_question")]
|
|
n5[("project_decision")]
|
|
end
|
|
n0[("topic")]
|
|
n1[("topic_variant")]
|
|
n2[("record_variant")]
|
|
n0 -->|"1 : N"| n1
|
|
n1 -->|"축에 건다"| n2
|
|
n2 -->|"(kind, id)"| n3
|
|
n2 -->|"(kind, id)"| n4
|
|
n2 -->|"(kind, id)"| n5
|