Command Palette

Search for a command to run...

Database Clarity / Schema Inspection

Database Schema Viewer

Interactive schema viewer for tables, columns, and key relationships.

Best for

table reviews, onboarding, and data model walkthroughs

Explains

how columns, constraints, and relations shape the system behind the UI

Why it matters

Data models are often understood too late. A schema viewer reduces the gap between application behavior and the tables that actually drive it.

Design Intent

Expose structure without overwhelming the reader by keeping tables, field metadata, and relations close enough to compare quickly.

System Signals

  • table size
  • field requirements
  • index and primary key markers
  • relation direction

Use Cases

  • Walk new developers through the core data model
  • Review relation design before changing product flows
  • Explain table ownership, nullable fields, and key constraints visually

Design Notes

  • Schema views should teach structure, not just list fields
  • Primary constraints need stronger emphasis than cosmetic metadata
  • Relations should feel explorable even in compact layouts

Database Schema Viewer

Inspect the tables, key columns, and downstream relationships that shape auth flows, session storage, and audit retention.

Tables
3
Selected size
18 MB
Relations
2
users
14.2k rows - 18 MB
id
uuid
required
PK
email
varchar(255)
required
IDX
role
enum
required
REQ
last_login_at
timestamp
nullable
NULL
Relations
Foreign-key level context for the selected table.
users1:N->sessionsuser_id
users1:N->audit_logsactor_id