Files
document-haness/docs/n+1liner/final/assets/diagrams/target-schema/target-schema.d2
T

24 lines
501 B
Plaintext

# 목표 스키마에 추가되는 mention 관계
# Question: 목표 모델에서 기존 users는 mentioned 사용자 역할로 feed_item_mentions에 어떻게 연결되는가?
direction: right
n0: "users" {
shape: rectangle
}
n1: "pages" {
shape: rectangle
}
n2: "feed_items" {
shape: rectangle
}
n3: "highlights" {
shape: rectangle
}
n4: "feed_item_mentions" {
shape: rectangle
}
n0 -> n2: "1:N"
n1 -> n2: "1:N"
n2 -> n3: "1:N"
n2 -> n4: "피드 아이템"
n0 -> n4: "mentioned 사용자"