Skip to content

Commit c97433d

Browse files
authored
docs: Fix MySQL create database syntax (#10436)
Signed-off-by: Ask Bjørn Hansen <[email protected]>
1 parent 39b507e commit c97433d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/content/doc/installation/database-preparation.en-us.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Note: All steps below requires that the database engine of your choice is instal
5252
3. Create database with UTF-8 charset and collation. Make sure to use `utf8mb4` charset instead of `utf8` as the former supports all Unicode characters (including emojis) beyond *Basic Multilingual Plane*. Also, collation chosen depending on your expected content. When in doubt, use either `unicode_ci` or `general_ci`.
5353
5454
```sql
55-
CREATE DATABASE 'giteadb' CHARACTER SET 'utf8mb4' COLLATE 'utf8mb4_unicode_ci';
55+
CREATE DATABASE giteadb CHARACTER SET 'utf8mb4' COLLATE 'utf8mb4_unicode_ci';
5656
```
5757
5858
Replace database name as appropriate.

0 commit comments

Comments
 (0)