diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2015-05-30 08:23:10 -0700 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2015-05-30 09:05:52 -0700 |
commit | e5e3ec20851bb336d0efb7956d115a4b4a4bd9b1 (patch) | |
tree | 6896af1e620ac9398f34083929a6c9fc0b783a07 /activerecord | |
parent | eefd4c0d28daf3d71a84996fff6714f8d65a94b0 (diff) | |
download | rails-e5e3ec20851bb336d0efb7956d115a4b4a4bd9b1.tar.gz rails-e5e3ec20851bb336d0efb7956d115a4b4a4bd9b1.tar.bz2 rails-e5e3ec20851bb336d0efb7956d115a4b4a4bd9b1.zip |
Add CHANGELOG entry for #17654 [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index edbfe38753..de47660875 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,16 @@ +* Do not set `sql_mode` if `strict: :default` is specified. + + ``` + # database.yml + production: + adapter: mysql2 + database: foo_prod + user: foo + strict: :default + ``` + + *Ryuta Kamizono* + * SQLite: `:collation` support for string and text columns. Example: |