Database Viewer
Browse the SQL that builds any database used across the lessons, without running it.
Loaded: Example 1 schema ยท my-first-query.migration-init
CREATE TABLE "User" (
id SERIAL PRIMARY KEY,
name TEXT NOT NULL,
email TEXT NOT NULL
);