Render tables, keys, and foreign-key relationships as an entity-relationship diagram.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
Tables become entities with typed columns, primary keys, and foreign-key edges; cardinality determines one-to-one, one-to-many, or many-to-many connectors. Relationships are rendered from declared schema text rather than guessed from names.
CREATE TABLE users ( id INTEGER PRIMARY KEY, name VARCHAR(100) NOT NULL ); CREATE TABLE posts ( id INTEGER PRIMARY KEY, title VARCHAR(255), user_id INTEGER REFERENCES users(id) );
erDiagram
users {
INTEGER id "PK"
VARCHAR(100) name
}
posts {
INTEGER id "PK"
VARCHAR(255) title
INTEGER user_id "FK"
}
users ||--o{ posts : "user_id"
Schema reviews, migration planning, and data-team documentation render ER diagrams.