Compare two database schemas and classify object additions, removals, and changes.
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.
Schema models are normalized into tables, columns, constraints, indexes, and types, then object-keyed differences are classified. Formatting and declaration order are ignored where possible.
Input1: CREATE TABLE users (id INT PRIMARY KEY, name VARCHAR(100)); Input2: CREATE TABLE users (id INT PRIMARY KEY, name VARCHAR(100), email VARCHAR(255));
Type: column_added Table: users Column: email Detail: Column 'email' (VARCHAR(255)) was added to 'users'
Migration review, CI drift detection, and production audits compare schemas.