Merge pull request #4334 from robeatoz/add-comment-to-temporary-psql-user-ncadmin

Add note ncadmin is a temporary PostgreSQL user
This commit is contained in:
Simon L 2024-03-05 16:56:44 +01:00 committed by GitHub
commit 17a19f0bae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,7 +33,7 @@ The procedure for migrating the files and the database works like this:
```
1. Create a new database by running:
```
export PG_USER="ncadmin"
export PG_USER="ncadmin" # This is a temporary user that gets created for the dump but is then overwritten by the correct one later on
export PG_PASSWORD="my-temporary-password"
export PG_DATABASE="nextcloud_db"
sudo -u postgres psql <<END