diff options
author | lain <lain@soykaf.club> | 2020-02-25 11:17:51 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-02-25 11:53:30 +0100 |
commit | f71aa644b1aedba32c83bad76bc512bfe52e6c75 (patch) | |
tree | cb5f3bfbf548bac3615f463de107577f9461c41b | |
parent | 035c2c1415ed46abb268cf85c141384416a799e2 (diff) | |
download | pleroma-f71aa644b1aedba32c83bad76bc512bfe52e6c75.tar.gz |
Add :unnamed option to default database configuration
-rw-r--r-- | config/config.exs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/config.exs b/config/config.exs index 9d1e29c0d..2b7a761ea 100644 --- a/config/config.exs +++ b/config/config.exs @@ -621,7 +621,9 @@ config :pleroma, :modules, runtime_dir: "instance/modules" config :pleroma, configurable_from_database: false -config :pleroma, Pleroma.Repo, parameters: [gin_fuzzy_search_limit: "500"] +config :pleroma, Pleroma.Repo, + parameters: [gin_fuzzy_search_limit: "500"], + prepare: :unnamed # Import environment specific config. This must remain at the bottom # of this file so it overrides the configuration defined above. |