aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2014-11-13 04:30:57 +0900
committerRyuta Kamizono <kamipo@gmail.com>2015-02-08 11:19:33 +0900
commit0bbff5ee16d2bfe151975e868ddec0d2f0fd1fff (patch)
tree83935f2809bf5bbaebb4172314218b7918629aee /activerecord/CHANGELOG.md
parent1492e83e49f74b1d874585000bad5368d9f09218 (diff)
downloadrails-0bbff5ee16d2bfe151975e868ddec0d2f0fd1fff.tar.gz
rails-0bbff5ee16d2bfe151975e868ddec0d2f0fd1fff.tar.bz2
rails-0bbff5ee16d2bfe151975e868ddec0d2f0fd1fff.zip
Respect the database default charset for `schema_migrations` table.
The charset of `version` column in `schema_migrations` table is depend on the database default charset and collation rather than the encoding of the connection.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 46d10d5bff..c76f4f2c30 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,11 @@
+* Respect the database default charset for `schema_migrations` table.
+
+ The charset of `version` column in `schema_migrations` table is depend
+ on the database default charset and collation rather than the encoding
+ of the connection.
+
+ *Ryuta Kamizono*
+
* Raise `ArgumentError` when passing `nil` or `false` to `Relation#merge`.
These are not valid values to merge in a relation so it should warn the users