From 6175fc02c400dd61ae7f8ee499310609ae3e1b79 Mon Sep 17 00:00:00 2001 From: ramil Date: Wed, 12 Aug 2020 04:35:17 +0300 Subject: [PATCH] fix readme (database user and password) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4fb250c6..21eba062 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ is required for running the automated tests and is used by the `make migrate` co 1. `createdb vulcanize_public` 1. `cd $GOPATH/src/github.com/vulcanize/ipfs-blockchain-watcher` 1. Run the migrations: `make migrate HOST_NAME=localhost NAME=vulcanize_public PORT=5432` - - There are optional vars `USER=username` and `PASS=password` if the database user is not the default user `postgres` and/or a password is present + - There are optional vars `USER=username:password` if the database user is not the default user `postgres` and/or a password is present - To rollback a single step: `make rollback NAME=vulcanize_public` - To rollback to a certain migration: `make rollback_to MIGRATION=n NAME=vulcanize_public` - To see status of migrations: `make migration_status NAME=vulcanize_public`