From 54b58d850e0ceabbb4aafb5e260e32964898e226 Mon Sep 17 00:00:00 2001 From: Adrian Macneil Date: Sun, 7 Aug 2016 23:28:30 -0700 Subject: [PATCH] Document down command --- README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 72755cd..a23ec3d 100644 --- a/README.md +++ b/README.md @@ -66,13 +66,14 @@ $ go get -u github.com/amacneil/dbmate ## Commands ```sh -dbmate # print help -dbmate new # generate a new migration file -dbmate up # create the database (if it does not already exist) and run any pending migrations -dbmate create # create the database -dbmate drop # drop the database -dbmate migrate # run any pending migrations -dbmate rollback # roll back the most recent migration +dbmate # print help +dbmate new # generate a new migration file +dbmate up # create the database (if it does not already exist) and run any pending migrations +dbmate create # create the database +dbmate drop # drop the database +dbmate migrate # run any pending migrations +dbmate rollback # roll back the most recent migration +dbmate down # alias for rollback ``` ## Usage