From 00e1e79ab308d5f673c56fd67eb8ae9e581d5c83 Mon Sep 17 00:00:00 2001 From: Ian Lai Date: Mon, 13 May 2019 11:17:57 +0100 Subject: [PATCH] Fix doc on custom table in README.md The sample command will return: ``` --table doesn't exist as an option ``` Supplying the table flag before the csv call addresses the issue. Closes #64 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fabd448..841c71d 100644 --- a/README.md +++ b/README.md @@ -230,7 +230,7 @@ This works the same for invalid JSON objects. `pgfutter` will take the sanitized filename as the table name. If you want to specify a custom table name or import into your predefined table schema you can specify the table explicitly. ```bash -pgfutter csv --table violations traffic_violations.csv +pgfutter --table violations csv traffic_violations.csv ``` ## Alternatives