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
This commit is contained in:
kolaente 2026-03-18 16:30:39 +01:00
parent 4442a9ca92
commit 8868b214ca
1 changed files with 5 additions and 0 deletions

View File

@ -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."
}
]
},