replaced owncloud by nextcloud in database configuration

This commit is contained in:
Patric Lenhart 2016-06-20 18:39:50 +02:00
parent ec7e5ed1e2
commit 62c1479f2a

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::