Merge pull request #810 from riegercloud/patch-3

Cosmetical changes
This commit is contained in:
Morris Jobke 2018-07-11 14:53:15 +02:00 committed by GitHub
commit f52d203a67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -140,14 +140,14 @@ You can quit the prompt by entering::
quit
If you prefer UTF8MB4 as your preferred collation setting instead:
If you prefer UTF8MB4 as your database collation setting:
::
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
CREATE DATABASE IF NOT EXISTS nextcloud CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
GRANT ALL PRIVILEGES on nextcloud.* to 'username'@'localhost';
FLUSH privileges;
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
CREATE DATABASE IF NOT EXISTS nextcloud CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
GRANT ALL PRIVILEGES on nextcloud.* to 'username'@'localhost';
FLUSH privileges;
You can quit the prompt by entering::