diff options
author | Steve Klabnik <steve@steveklabnik.com> | 2012-09-26 07:59:18 -0700 |
---|---|---|
committer | Steve Klabnik <steve@steveklabnik.com> | 2012-09-26 07:59:18 -0700 |
commit | 15d475a63b0beec2e1e735d49103e642ea54dc78 (patch) | |
tree | 9bf65a3ac1c91dee5f4c4ddb83d2b5d71a2ca8c1 /guides | |
parent | a200ebd8818d045e035c6e025733f8868f5a0181 (diff) | |
download | rails-15d475a63b0beec2e1e735d49103e642ea54dc78.tar.gz rails-15d475a63b0beec2e1e735d49103e642ea54dc78.tar.bz2 rails-15d475a63b0beec2e1e735d49103e642ea54dc78.zip |
Remove readonly notice.
You need to have @implicit_readonly set for this to happen,
and it's false by defualt.
Fixes #3386.
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 |