Commit d3f5a0c6 authored by Alexander Mills's avatar Alexander Mills Committed by Alexander Mills

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
parent e24589a1
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
production: production:
adapter: mysql2 adapter: mysql2
encoding: utf8 encoding: utf8
collation: utf8_general_ci
reconnect: false reconnect: false
database: gitlabhq_production database: gitlabhq_production
pool: 10 pool: 10
...@@ -18,6 +19,7 @@ production: ...@@ -18,6 +19,7 @@ production:
development: development:
adapter: mysql2 adapter: mysql2
encoding: utf8 encoding: utf8
collation: utf8_general_ci
reconnect: false reconnect: false
database: gitlabhq_development database: gitlabhq_development
pool: 5 pool: 5
...@@ -31,6 +33,7 @@ development: ...@@ -31,6 +33,7 @@ development:
test: &test test: &test
adapter: mysql2 adapter: mysql2
encoding: utf8 encoding: utf8
collation: utf8_general_ci
reconnect: false reconnect: false
database: gitlabhq_test database: gitlabhq_test
pool: 5 pool: 5
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment