結論
以下のように書く。
--- title: ここにタイトルが入る ---
具体例
Mermaid のコード
---
title: サンプルER図
---
erDiagram
%% アソシエーション
users ||--o{ posts : "1人のユーザーは0以上の投稿を持つ"
users ||--o{ comments: "1人のユーザーは0以上のコメントを持つ"
posts ||--o{ comments: "1つの投稿は0以上のコメントを持つ"
%% テーブル定義
users {
bigint id PK
string name "ユーザー名"
timestamp created_at
timestamp deleted_at
}
posts {
bigint id PK
references user FK
string title "投稿タイトル"
text content "投稿内容"
timestamp created_at
timestamp deleted_at
}
comments {
bigint id PK
references post FK
references user FK
text content "コメント内容"
timestamp created_at
timestamp deleted_at
}
