diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2019-03-22 08:13:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-22 08:13:39 -0400 |
commit | f40860800c231ecd1daef6cf6b5a8a8eda76478d (patch) | |
tree | 0fed20acbc7ebc1b71d29de434a3a0ca78741936 /guides/source | |
parent | 0a0f115031b64b5335fa88543c40df4194dfb428 (diff) | |
parent | f41825809cf3d27f98467bd7bc005e5d6ed94828 (diff) | |
download | rails-f40860800c231ecd1daef6cf6b5a8a8eda76478d.tar.gz rails-f40860800c231ecd1daef6cf6b5a8a8eda76478d.tar.bz2 rails-f40860800c231ecd1daef6cf6b5a8a8eda76478d.zip |
Merge pull request #35617 from mattyoho/add-annotation-support-to-relations
Add support for annotating queries generated by ActiveRecord::Relation with SQL comments
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_record_querying.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md index 71a03e11d9..cc6e08aaec 100644 --- a/guides/source/active_record_querying.md +++ b/guides/source/active_record_querying.md @@ -59,6 +59,7 @@ To retrieve objects from the database, Active Record provides several finder met The methods are: +* `annotate` * `find` * `create_with` * `distinct` |