From e8a653e3b13dc8feeaf1f5b057b3b34bd3d01aeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tr=E1=BA=A7n=20Minh=20Nh=E1=BB=B1t?= Date: Sun, 26 Apr 2020 13:43:17 +0900 Subject: [PATCH] fix(docs): Update `ssl` example Change `ssl` option example for postgres from `string` like value to `boolean` to prevent misleading. Signed-off-by: Tran Minh Nhut --- docs/Getting Started/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Getting Started/configuration.md b/docs/Getting Started/configuration.md index 31f9417..3278842 100644 --- a/docs/Getting Started/configuration.md +++ b/docs/Getting Started/configuration.md @@ -27,7 +27,7 @@ db-migrate supports the concept of environments. For example, you might have a d "host": "localhost", "database": "mydb", "port": "20144", - "ssl": "true", + "ssl": true, "schema": "my_schema" },