diff options
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_record_querying.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md index d46b35f8df..1ae6a1f204 100644 --- a/guides/source/active_record_querying.md +++ b/guides/source/active_record_querying.md @@ -546,8 +546,6 @@ By default, `Model.find` selects all the fields from the result set using `selec To select only a subset of fields from the result set, you can specify the subset via the `select` method. -NOTE: If the `select` method is used, all the returning objects will be [read only](#readonly-objects). - For example, to select only `viewable_by` and `locked` columns: ```ruby |