pg-schema-diff

Diff PostgreSQL schemas and generate SQL migration scripts

brewmacoslinux
Try with needOr install directly
Source

About

Diff Postgres schemas and generating SQL migrations

Commands

pg-schema-diff

Examples

Compare two PostgreSQL databases and generate migration SQL$ pg-schema-diff postgres://user:pass@localhost/db1 postgres://user:pass@localhost/db2
Generate migration from schema file to live database$ pg-schema-diff --from-file schema.sql postgres://user:pass@localhost/mydb
Output migration as file instead of stdout$ pg-schema-diff postgres://user:pass@localhost/old postgres://user:pass@localhost/new > migration.sql