aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorVictor Costan <costan@gmail.com>2012-10-16 05:53:18 -0400
committerVictor Costan <costan@gmail.com>2012-10-27 13:41:27 -0400
commit5d30e443908558713cff16cdad4b09e203c8fae8 (patch)
tree071dcdd7622515bc8c2556e36f2745e5d22a7fe2 /activerecord/CHANGELOG.md
parent028f29dc91cad17ae0634e0973f7ff1b43435466 (diff)
downloadrails-5d30e443908558713cff16cdad4b09e203c8fae8.tar.gz
rails-5d30e443908558713cff16cdad4b09e203c8fae8.tar.bz2
rails-5d30e443908558713cff16cdad4b09e203c8fae8.zip
Use the MySQL varbinary type when appropriate in migrations.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index c99f09f478..815902a129 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,9 @@
## Rails 4.0.0 (unreleased) ##
+* Small binary fields use the `VARBINARY` MySQL type, instead of `TINYBLOB`.
+
+ *Victor Costan*
+
* Decode URI encoded attributes on database connection URLs.
*Shawn Veader*