Add status command (#120)

Add new command to list applied and pending migrations.

Closes #28
Closes #32
Closes #66
Closes #120
This commit is contained in:
fcarletti 2020-02-27 23:24:11 -06:00 committed by Adrian Macneil
parent f7a3390299
commit 256f92ad19
5 changed files with 143 additions and 4 deletions

View file

@ -93,6 +93,7 @@ dbmate drop # drop the database
dbmate migrate # run any pending migrations
dbmate rollback # roll back the most recent migration
dbmate down # alias for rollback
dbmate status # show the status of all migrations
dbmate dump # write the database schema.sql file
dbmate wait # wait for the database server to become available
```