You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2023/03/09 12:17:06 UTC

[airflow] branch main updated: Update set-up-database.rst (#29991)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new f271eca519 Update set-up-database.rst (#29991)
f271eca519 is described below

commit f271eca519b47f16bcf933efa3186e90961f9f07
Author: Itay <it...@gmail.com>
AuthorDate: Thu Mar 9 14:16:54 2023 +0200

    Update set-up-database.rst (#29991)
---
 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::