DB Schema Visualizer
Analyze, design, and share database schemas with focus mode, inferred relationships, health scoring, and backend blueprints.
Format
SQL
Tables
3
Relations
2
Health
90/100
Schema Input
Paste SQL, Prisma, DBML, Django, or Rails-like schema.
Mini docs
Supported: SQL CREATE TABLE, Prisma model, DBML Table, and simple ORM class patterns.
Inference: columns like user_id or userId are matched to likely table primary keys.
Focus mode: pick a table to see only that table plus one-hop relationships.
Health: score subtracts missing PKs, risky money types, and inferred FKs without explicit constraints.
Schema Workbench
Visualize relationships, review risks, and generate implementation notes.
users
SQLorders.user_id → users
orders
SQLorders.user_id → users
order_items.order_id → orders
order_items
SQLorder_items.order_id → orders