11 lines
286 B
Plaintext
11 lines
286 B
Plaintext
%% 기준선 스키마의 관계
|
|
%% question: 현재 기준선에서 users, pages, feed_items, highlights는 어떻게 연결되는가?
|
|
flowchart LR
|
|
n0["users"]
|
|
n1["pages"]
|
|
n2["feed_items"]
|
|
n3["highlights"]
|
|
n0 -->|"1:N"| n2
|
|
n1 -->|"1:N"| n2
|
|
n2 -->|"1:N"| n3
|