Diff a branch against its parent

branches

// what it does

Shows exactly what schema changes a branch introduces relative to its parent — the same diff a deploy request will show, available before you open one. Review it as your own pre-flight before requesting review from others.

// shell

$ pscale branch diff mydb add-users-table
$ pscale branch diff mydb add-users-table --web

// gotcha

The diff is schema-only; data changes (INSERTs you ran while testing) don't appear and won't deploy. Deploy requests move schema, never data.

// resources