This is an automated email from the ASF dual-hosted git repository. pierrejeambrun pushed a commit to branch v2-5-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 4805e2937e065bada17ebc109bcb56c0c512d1d3 Author: Itay <[email protected]> AuthorDate: Thu Mar 9 14:16:54 2023 +0200 Update set-up-database.rst (#29991) (cherry picked from commit f271eca519b47f16bcf933efa3186e90961f9f07) --- docs/apache-airflow/howto/set-up-database.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/apache-airflow/howto/set-up-database.rst b/docs/apache-airflow/howto/set-up-database.rst index 70de5f5339..c33f9ac0d9 100644 --- a/docs/apache-airflow/howto/set-up-database.rst +++ b/docs/apache-airflow/howto/set-up-database.rst @@ -167,6 +167,9 @@ In the example below, a database ``airflow_db`` and user with username ``airflo CREATE DATABASE airflow_db; CREATE USER airflow_user WITH PASSWORD 'airflow_pass'; GRANT ALL PRIVILEGES ON DATABASE airflow_db TO airflow_user; + -- PostgreSQL 15 requires additional privileges: + USE airflow_db; + GRANT ALL ON SCHEMA public TO airflow_user; .. note::
