diff options
author | Alexander Mills <agjmills@users.noreply.github.com> | 2014-07-16 16:44:43 +0100 |
---|---|---|
committer | Alexander Mills <alex.mills@drpgroup.com> | 2014-08-13 14:45:23 +0100 |
commit | d3f5a0c67f029441537d4f64040bf6454b999120 (patch) | |
tree | a4b0be35858683a7fe13d8938409747ce40e35c1 /config/database.yml.mysql | |
parent | e24589a165d8ed23aa8164f488f2de9f1b358668 (diff) | |
download | gitlab-ce-d3f5a0c67f029441537d4f64040bf6454b999120.tar.gz |
set the collation to utf8_general_ci
I get problems with strange characters in merge requests unless the collation is set to utf8_general_ci
set the collation to utf8_general_ci
I get problems with strange characters in merge requests unless the collation is set to utf8_general_ci
set the collation to utf8_general_ci
I get problems with strange characters in merge requests unless the collation is set to utf8_general_ci
Diffstat (limited to 'config/database.yml.mysql')
-rw-r--r-- | config/database.yml.mysql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/database.yml.mysql b/config/database.yml.mysql index 55ac088bc1d..a99c50706c5 100644 --- a/config/database.yml.mysql +++ b/config/database.yml.mysql @@ -4,6 +4,7 @@ production: adapter: mysql2 encoding: utf8 + collation: utf8_general_ci reconnect: false database: gitlabhq_production pool: 10 @@ -18,6 +19,7 @@ production: development: adapter: mysql2 encoding: utf8 + collation: utf8_general_ci reconnect: false database: gitlabhq_development pool: 5 @@ -31,6 +33,7 @@ development: test: &test adapter: mysql2 encoding: utf8 + collation: utf8_general_ci reconnect: false database: gitlabhq_test pool: 5 |