diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-11-27 00:42:06 -0800 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-11-27 00:42:06 -0800 |
commit | 260471a5e1b00136fc2d6e66bab29059fc6d8174 (patch) | |
tree | 97c964c82bf8f07770650d3379320d7de7b0ea4e /activerecord | |
parent | c65f8d224360721111a40d057b843ea068bffedc (diff) | |
parent | e1042ee39994b812bdc0ff3a4bfb43e79e6cf164 (diff) | |
download | rails-260471a5e1b00136fc2d6e66bab29059fc6d8174.tar.gz rails-260471a5e1b00136fc2d6e66bab29059fc6d8174.tar.bz2 rails-260471a5e1b00136fc2d6e66bab29059fc6d8174.zip |
Merge pull request #13071 from kuldeepaggarwal/documentation-updation
[ci skip]removed obsolete information about `options` parameter in create method
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/persistence.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb index a73a140ef1..35fbad466e 100644 --- a/activerecord/lib/active_record/persistence.rb +++ b/activerecord/lib/active_record/persistence.rb @@ -10,9 +10,6 @@ module ActiveRecord # The +attributes+ parameter can be either a Hash or an Array of Hashes. These Hashes describe the # attributes on the objects that are to be created. # - # +create+ respects mass-assignment security and accepts either +:as+ or +:without_protection+ options - # in the +options+ parameter. - # # ==== Examples # # Create a single new object # User.create(first_name: 'Jamie') |