From 884bc9f501ea4c31ac59101e0f41882e789422e6 Mon Sep 17 00:00:00 2001 From: Nguyen Dang Minh Date: Thu, 15 Sep 2016 17:37:46 +0700 Subject: [PATCH 1/2] Correct command Error: unknown shorthand flag: 'x' in -x --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f7cd3ad..195357b 100644 --- a/README.md +++ b/README.md @@ -288,7 +288,7 @@ with SQLBoiler. If you find there are some failing tests, please check the ```sh # Generate our models and exclude the migrations table -sqlboiler -x goose_migrations postgres +sqlboiler postgres # Run the generated tests go test ./models From d21ba9b5922a9c79d1ae7e3f5a5da43a0b950c64 Mon Sep 17 00:00:00 2001 From: Patrick O Date: Thu, 15 Sep 2016 20:55:09 +1000 Subject: [PATCH 2/2] Change -x command to -b --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 195357b..899098b 100644 --- a/README.md +++ b/README.md @@ -288,7 +288,7 @@ with SQLBoiler. If you find there are some failing tests, please check the ```sh # Generate our models and exclude the migrations table -sqlboiler postgres +sqlboiler -b goose_migrations postgres # Run the generated tests go test ./models