Browse Source

Change default charset for MySQL on install to utf8mb4 (#10989)

Signed-off-by: Andrew Thornton <art27@cantab.net>

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
tags/v1.13.0-dev
zeripath 4 years ago
parent
commit
1bec60e02a
No account linked to committer's email address
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      templates/install.tmpl

+ 3
- 3
templates/install.tmpl View File

@@ -73,12 +73,12 @@
<div class="inline required field">
<label>{{.i18n.Tr "install.charset"}}</label>
<div class="ui selection database type dropdown">
<input type="hidden" name="charset" value="{{if .charset}}{{.charset}}{{else}}utf8{{end}}">
<div class="default text">utf8</div>
<input type="hidden" name="charset" value="{{if .charset}}{{.charset}}{{else}}utf8mb4{{end}}">
<div class="default text">utf8mb4</div>
<i class="dropdown icon"></i>
<div class="menu">
<div class="item" data-value="utf8">utf8</div>
<div class="item" data-value="utf8mb4">utf8mb4</div>
<div class="item" data-value="utf8">utf8</div>
</div>
</div>
</div>

Loading…
Cancel
Save