Skip to content

Commit

Permalink
docs: Fix MySQL create database syntax (#10436)
Browse files Browse the repository at this point in the history
Signed-off-by: Ask Bjørn Hansen <[email protected]>
  • Loading branch information
abh authored Feb 24, 2020
1 parent 39b507e commit c97433d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Note: All steps below requires that the database engine of your choice is instal
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`.

```sql
CREATE DATABASE 'giteadb' CHARACTER SET 'utf8mb4' COLLATE 'utf8mb4_unicode_ci';
CREATE DATABASE giteadb CHARACTER SET 'utf8mb4' COLLATE 'utf8mb4_unicode_ci';
```

Replace database name as appropriate.
Expand Down

0 comments on commit c97433d

Please sign in to comment.