From 15d475a63b0beec2e1e735d49103e642ea54dc78 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Wed, 26 Sep 2012 07:59:18 -0700 Subject: [PATCH] Remove readonly notice. You need to have @implicit_readonly set for this to happen, and it's false by defualt. Fixes #3386. --- guides/source/active_record_querying.md | 2 -- 1 file changed, 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 -- GitLab