This repository is open to contributions via pull requests. Forking or copying this code for other projects is not permitted without explicit permission.
Easily create interactive Entity Relationship Diagrams (ERDs) in FigJam with this plugin. Just paste your database schema written in MySQL, PostgreSQL, or DBML, and the plugin will parse it into an editable diagram with tables and relationships.
Watch this video on How to Use the Plugin for a quick guide.
- 📝 Built-in Code Editor with live preview and syntax highlighting
- 🔍 Real-Time Error Detection for supported SQL dialects
- 📊 Auto-Generated Diagrams from MySQL, PostgreSQL, and DBML
- 🧱 Visual Elements:
- Primary/Foreign key icons
- Color-coded fields by type
- 🖱️ Fully Interactive:
- Drag and rearrange tables
- Adjust connectors freely
- Editable text labels
- Open FigJam
- Search for
Entity Relationship Diagramin the Plugins menu. - Paste your schema code into the editor
- Watch as your database is transformed into an editable diagram!
- MySQL
- PostgreSQL
- DBML
Example DBML:
Table users {
id int [pk]
name varchar
email varchar
}
Table posts {
id int [pk]
user_id int [ref: > users.id]
title varchar
}
