From f9a8053d3b9c6ac55d98acd85d3e0043ab497615 Mon Sep 17 00:00:00 2001 From: Camille Briand <22414709+AmiralBl3ndic@users.noreply.github.com> Date: Sun, 5 Dec 2021 16:19:27 +0100 Subject: [PATCH] Fix wrong parameter name in connection.connection In the documentation about the connection parameters, the `username` parameter does not actually exist. This is probably a typo and should be replaced by the `user` parameter as per the example given below on the same page. --- .../configurations/required/databases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer-docs/latest/setup-deployment-guides/configurations/required/databases.md b/docs/developer-docs/latest/setup-deployment-guides/configurations/required/databases.md index 01c26bf932..20a9ec67db 100644 --- a/docs/developer-docs/latest/setup-deployment-guides/configurations/required/databases.md +++ b/docs/developer-docs/latest/setup-deployment-guides/configurations/required/databases.md @@ -38,7 +38,7 @@ The `connection.connection` object found in `./config/database.js` is used to pa | `host` | Database host name. Default value: `localhost`. | `String` | | `port` | Database port | `Integer` | | `database` | Database name. | `String` | -| `username` | Username used to establish the connection | `String` | +| `user` | Username used to establish the connection | `String` | | `password` | Password used to establish the connection | `String` | | `timezone` | Set the default behavior for local time. Default value: `utc` [Timezone options](https://www.php.net/manual/en/timezones.php) | `String` | | `schema` | Set the default database schema. **Used only for Postgres DB.** | `String` |