From d43da29a8cd456873ffa31ab398f1d73169b5684 Mon Sep 17 00:00:00 2001 From: takabayap Date: Tue, 23 May 2023 14:16:21 +0900 Subject: [PATCH] fix: config example sslmode to require, not required --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e4435d6..1f206960 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ This may be useful if one doesn't want to store credentials in file: ```yml production: dialect: postgres - datasource: host=prodhost dbname=proddb user=${DB_USER} password=${DB_PASSWORD} sslmode=required + datasource: host=prodhost dbname=proddb user=${DB_USER} password=${DB_PASSWORD} sslmode=require dir: migrations table: migrations ```