aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/config.example.yml
diff options
context:
space:
mode:
authorJeremy Kemper <jeremykemper@gmail.com>2014-08-30 09:32:50 -0700
committerJeremy Kemper <jeremykemper@gmail.com>2014-08-30 10:07:07 -0700
commitd5ad2037455a03261d680d143257ba253d8a7112 (patch)
treea5107d1d5d5c37b8750f1ea7e309f35dae76480b /activerecord/test/config.example.yml
parent39f3495ebc40e867ad39c006eac08638ff41398d (diff)
downloadrails-d5ad2037455a03261d680d143257ba253d8a7112.tar.gz
rails-d5ad2037455a03261d680d143257ba253d8a7112.tar.bz2
rails-d5ad2037455a03261d680d143257ba253d8a7112.zip
MySQL: set connection collation along with the charset
Sets the connection collation to the database collation configured in database.yml. Otherwise, `SET NAMES utf8mb4` will use the default collation for that charset (utf8mb4_general_ci) when you may have chosen a different collation, like utf8mb4_unicode_ci. This only applies to literal string comparisons, not column values, so it is unlikely to affect you.
Diffstat (limited to 'activerecord/test/config.example.yml')
-rw-r--r--activerecord/test/config.example.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/test/config.example.yml b/activerecord/test/config.example.yml
index a54914c372..ce30cff9e7 100644
--- a/activerecord/test/config.example.yml
+++ b/activerecord/test/config.example.yml
@@ -55,6 +55,7 @@ connections:
arunit:
username: rails
encoding: utf8
+ collation: utf8_unicode_ci
arunit2:
username: rails
encoding: utf8
@@ -63,6 +64,7 @@ connections:
arunit:
username: rails
encoding: utf8
+ collation: utf8_unicode_ci
arunit2:
username: rails
encoding: utf8