diff options
author | lain <lain@soykaf.club> | 2020-02-25 11:51:01 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-02-25 11:53:51 +0100 |
commit | e4804137b3b5d269515bc40b9f173a1fc8931014 (patch) | |
tree | 1f97644af3d217e4fe7f005c593f5909d0a75e6b /docs/installation | |
parent | f71aa644b1aedba32c83bad76bc512bfe52e6c75 (diff) | |
download | pleroma-e4804137b3b5d269515bc40b9f173a1fc8931014.tar.gz pleroma-e4804137b3b5d269515bc40b9f173a1fc8931014.zip |
Document database default changes
Diffstat (limited to 'docs/installation')
-rw-r--r-- | docs/installation/otp_en.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/installation/otp_en.md b/docs/installation/otp_en.md index aab5197a2..32551f7b6 100644 --- a/docs/installation/otp_en.md +++ b/docs/installation/otp_en.md @@ -73,6 +73,15 @@ rc-service postgresql restart systemctl restart postgresql ``` +If you are using PostgreSQL 12 or higher, add this to your Ecto database configuration + +```elixir +prepare: :named, +parameters: [ + plan_cache_mode: "force_custom_plan" +] +``` + ### Installing Pleroma ```sh # Create a Pleroma user |