From c03d89f372604602199e0198cfd4203f6ac485a9 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] feat(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" },