schema-evolution-manager

Manage PostgreSQL database schema migrations and version control

brewmacoslinux
Try with needOr install directly
Source

About

Manage postgresql database schema migrations

Commands

sem

Examples

create a new database migration script$ sem add-migration -d mydb -m 'add users table'
apply pending migrations to the database$ sem validate -d mydb
view migration history and status$ sem status -d mydb
initialize schema evolution manager for a database$ sem init -d mydb
rollback to a previous migration version$ sem undo -d mydb