mirror of
https://github.com/modoboa/modoboa.git
synced 2026-04-26 01:16:01 +03:00
[GH-ISSUE #1619] modoboa database collation? #1273
Labels
No labels
bug
bug
dependencies
design
documentation
duplicate
enhancement
enhancement
enhancement
feedback-needed
help-needed
help-needed
installer
invalid
looking-for-sponsors
modoboa-contacts
new-ui
new-ui
pr
pull-request
pyconfr
python
question
security
stale
webmail
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/modoboa-modoboa#1273
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @stefaweb on GitHub (Nov 19, 2018).
Original GitHub issue: https://github.com/modoboa/modoboa/issues/1619
Hello!
Just one basic question.
For the modoboa database (with MariaDB), what is the best collation to use ?
utf8_general_ci
or
utf8mb4_unicode_ci
or
utf8mb4_general_ci
Sincerely,
@tonioo commented on GitHub (Nov 20, 2018):
@stefaweb I'm not a MariaDB user so I can't really help you, sorry.
@Arvedui commented on GitHub (Nov 20, 2018):
You should probably use
utf8mb4_unicode_ci, assuming that you use a somewhat recent version.utf8_general_ciis not utf8 because mysql. It only allows for 3 Byte characters not 4 Byte.utf8mb4_general_ci"just" sorts differently than the Unicode variant, which may or may not lead to unexpected results.@tonioo commented on GitHub (Nov 23, 2018):
@Arvedui Thank you for the answer 👍