우리는erd-go와 주변 도구를 만들어'실체 관계 진단'을 묘사했다
ERD란 무엇입니까?
뭐 공부 해요?
퍼레이드부터 보세요.
erd-go+graphviz-dot.js+vscode 플러그인ERD Preview의 조합
작법 # Entities are declared in '[' ... ']'. All attributes after the entity header
# up until the end of the file (or the next entity declaration) correspond
# to this entity.
[Person]
*name
height
weight
+birth_location_id
[Location]
*id
city
state
country
# Each relationship must be between exactly two entities, which need not
# be distinct. Each entity in the relationship has exactly one of four
# possible cardinalities:
#
# Cardinality Syntax
# 0 or 1 0
# exactly 1 1
# 0 or more *
# 1 or more +
Person *--1 Location
# Entities are declared in '[' ... ']'. All attributes after the entity header
# up until the end of the file (or the next entity declaration) correspond
# to this entity.
[Person]
*name
height
weight
+birth_location_id
[Location]
*id
city
state
country
# Each relationship must be between exactly two entities, which need not
# be distinct. Each entity in the relationship has exactly one of four
# possible cardinalities:
#
# Cardinality Syntax
# 0 or 1 0
# exactly 1 1
# 0 or more *
# 1 or more +
Person *--1 Location
[]
에 이름을 기재하면 표명1--*
(1 대 다) 또는 *--*
(다중 대 다) 로 기재함으로써 표를 서로 연결할 수 있음 창조적 동기
크게 두 개로 나누다
"고민의 결과는했어요
각종 공구에 사용되는 기술
erd-go
graphviz-dot.js
이것은 erd-go에서 뱉은 DOT 언어를 SVG로 바꾸는 도구입니다.graphviz에 해당하는dot 명령
zeit/pkg
ERD Preview(Visual Studio Code 확장)
erd
명령과 dot
명령VScode 확장 자습서
설치 후
settings.json
다음 설정 필요// erd と dot コマンドへのパス。Windows の場合はC:\\Users ... というような形
"erd-preview.erdPath": "...",
"erd-preview.dotPath": "...",
마지막
Reference
이 문제에 관하여(우리는erd-go와 주변 도구를 만들어'실체 관계 진단'을 묘사했다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kaishuu0123/items/9f52fa3ab1ea31132993텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)