SEEQL

Visualize DBML and PostgreSQL schemas as interactive diagrams using React Flow

Start Designing
See Your Database Clearly

Transform abstract schema code into clear, interactive diagrams. Instantly understand relationships and structure.

Instantly Compare Schemas

Spend less time parsing syntax and more time designing better databases.

Work Faster, Make Fewer Errors

Edit schemas in real-time and catch design issues early before they become costly problems.

Support Both SQL and DBML

Supports DBML for schema design and visualization, and also SQL for database schema management. Export diagrams as PNG or SVG for docs and presentations so everyone stays aligned.

100% Open Source

No hidden paywalls. No upsells.

Example DBML Schema

Table users {
  id integer [pk, increment]
  email varchar
  name varchar
  created_at timestamp
}

Table posts {
  id integer [pk, increment]
  title varchar
  content text
  author_id integer
  created_at timestamp
}

Ref: posts.author_id > users.id