Merge pull request #30 from Zollak/replace-nextcloud

[stable9] replaced owncloud by nextcloud in database configuration
This commit is contained in:
Morris Jobke 2016-06-21 00:29:51 +02:00 committed by GitHub
commit 26778a614b

View File

@ -193,8 +193,8 @@ Then a **postgres=#** prompt will appear. Now enter the following lines and conf
CREATE USER username WITH PASSWORD 'password';
CREATE DATABASE nextcloud TEMPLATE template0 ENCODING 'UNICODE';
ALTER DATABASE owncloud OWNER TO username;
GRANT ALL PRIVILEGES ON DATABASE owncloud TO username;
ALTER DATABASE nextcloud OWNER TO username;
GRANT ALL PRIVILEGES ON DATABASE nextcloud TO username;
You can quit the prompt by entering::