From 62c1479f2a189aee79bbc83cc3998cddb9a72889 Mon Sep 17 00:00:00 2001 From: Patric Lenhart Date: Mon, 20 Jun 2016 18:39:50 +0200 Subject: [PATCH] replaced owncloud by nextcloud in database configuration --- .../configuration_database/linux_database_configuration.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin_manual/configuration_database/linux_database_configuration.rst b/admin_manual/configuration_database/linux_database_configuration.rst index cd1358f8e..7beed9e5d 100644 --- a/admin_manual/configuration_database/linux_database_configuration.rst +++ b/admin_manual/configuration_database/linux_database_configuration.rst @@ -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::