diff options
author | Jon Leighton <j@jonathanleighton.com> | 2012-01-16 21:35:21 +0000 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2012-01-16 21:35:21 +0000 |
commit | 8c0c0838cf4675a13964fd944210d66e25014545 (patch) | |
tree | db32619d49a8571a6ba398dca6d6aad69aa712cd /activerecord | |
parent | a2dab46cae35a06fd5c5500037177492a047c252 (diff) | |
download | rails-8c0c0838cf4675a13964fd944210d66e25014545.tar.gz rails-8c0c0838cf4675a13964fd944210d66e25014545.tar.bz2 rails-8c0c0838cf4675a13964fd944210d66e25014545.zip |
Make it more explicit that the feature is deprecated, not removed.
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 7173f44df6..f7de341fbe 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -10,8 +10,10 @@ flawed idea unless we write an SQL parser, which we do not wish to do. - Therefore, you must explicitly state which tables you reference, - when using SQL snippets: + Therefore, it is now deprecated. + + To avoid deprecation warnings and for future compatibility, you must + explicitly state which tables you reference, when using SQL snippets: Post.includes(:comments) .where("comments.name = 'foo'") |