From 8868b214ca2f0b34a6506066af1c4c96e13ca40d Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 18 Mar 2026 16:30:39 +0100 Subject: [PATCH] docs: document database.schema config option for PostgreSQL The database.schema setting was missing from config-raw.json, making it undiscoverable for users who need to set it when their PostgreSQL tables live in a non-public schema (e.g. via the database user's search_path). Refs go-vikunja/vikunja#2397 --- config-raw.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config-raw.json b/config-raw.json index b91c006f7..9682f38a4 100644 --- a/config-raw.json +++ b/config-raw.json @@ -247,6 +247,11 @@ "key": "tls", "default_value": "false", "comment": "Enable SSL/TLS for mysql connections. Options: false, true, skip-verify, preferred" + }, + { + "key": "schema", + "default_value": "public", + "comment": "The PostgreSQL schema to use. Only used with postgres. If you have an existing Vikunja installation where the tables were created in a non-public schema (e.g. via the database user's search_path), you must set this to match that schema name." } ] },