Review the schema diff of a deploy request

deploy requests

// what it does

Shows the exact DDL the deploy request will apply — the thing to read before approving anything. --web opens the richer dashboard diff view for side-by-side review.

// shell

$ pscale deploy-request diff mydb 12
$ pscale deploy-request diff mydb 12 --web

// gotcha

Read the diff for destructive operations (DROP COLUMN, DROP TABLE): they lint as warnings, deploy fine, and delete data. The diff is your last calm look before that happens.

// resources