1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Rephrase how we explain RecordInvalid exception in the context of

`#create!` regarding validations in contrast to the behavior of
`#create`. Also describe creating multiple objects using an array of
hashes as the +attributes+ parameter. [ci skip] /cc #16384
This commit is contained in:
Zachary Scott 2014-08-07 19:05:21 -07:00
parent f18552a872
commit 30529dc00f

View file

@ -36,11 +36,13 @@ module ActiveRecord
end
end
# Creates an object (or multiple objects) and saves it to the database, if validations pass.
# Works like Base#create except that it raises a RecordInvalid error if validations fail.
# Creates an object (or multiple objects) and saves it to the database,
# if validations pass. Raises a RecordInvalid error if validations fail,
# unlike Base#create.
#
# 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.
# These describe which attributes to be created on the object, or
# multiple objects when given an Array of Hashes.
def create!(attributes = nil, &block)
if attributes.is_a?(Array)
attributes.collect { |attr| create!(attr, &block) }