1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Changelog entry regarding mysql(2) STRICT_ALL_TABLES

This commit is contained in:
Michael Pearson 2012-05-05 17:23:13 +10:00
parent 7c4d331133
commit 2054a17dd8

View file

@ -1,5 +1,11 @@
## Rails 4.0.0 (unreleased) ##
* `mysql` and `mysql2` connections will set `SQL_MODE=STRICT_ALL_TABLES` by
default to avoid silent data loss. This can be disabled by specifying
`strict: false` in your `database.yml`.
*Michael Pearson*
* Added default order to `first` to assure consistent results among
diferent database engines. Introduced `take` as a replacement to
the old behavior of `first`.