This tool was created to simplify working with PostgreSQL for every day db tasks for personal projects. Common tasks like creating simple migrations, applying them incrementally on multiple servers, and seeing what's in a database should be easy to do.
Most of the time when working with SQL databases for personal projects, I'm only doing a few things. Managing tables in basic ways and applying those changes to one or more servers. These changes can been seen as a date ordered sequence of SQL files to execute on your database. Pig stores what latest file has been applied on your db so next time you apply the migrations, it only executes the newest ones in order. I added a few helper utilities for quickly adding common SQL commands to your current editing migration. You may face other challenges with migrations in real world projects, but this tool might offer you a quick way to get going with SQL and having fun.
```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 ```