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:
parent
4442a9ca92
commit
8868b214ca
|
|
@ -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."
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue