This tool was created to simplify working with PostgreSQL for every day development tasks. Common tasks like creating simple migrations, applying them incrementally on multiple servers, and seeing what's in a database should be easy to do.
```bash
export PIGCONNECTIONSTRING="
pig create "My first migration"
pig modify create-table people
pig modify add-column people name TEXT
pig plan
pig apply
pig show tables
pig show table people
pig plan
pig create "Drop people"
pig modify drop-table people
pig plan
pig apply
pig show tables ```