Skip to content

Commit aadb414

Browse files
[DOC] Update Active Record basic guide for create method in case of validation fails
1 parent 4867559 commit aadb414

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

guides/source/active_record_basics.md

+16-5
Original file line numberDiff line numberDiff line change
@@ -586,11 +586,12 @@ unique, is not already in the database, follows a specific format, and many
586586
more.
587587

588588
Methods like `save`, `create` and `update` validate a model before persisting it
589-
to the database. When a model is invalid these methods return `false` and no
590-
database operations are performed. All of these methods have a bang counterpart
591-
(that is, `save!`, `create!` and `update!`), which are stricter in that they
592-
raise an `ActiveRecord::RecordInvalid` exception when validation fails. A quick
593-
example to illustrate:
589+
to the database. If the model is invalid, no database operations are performed. In
590+
this case the `save` and `update` methods return `false`. The `create` method still
591+
returns the object, which can be checked for errors. All of these
592+
methods have a bang counterpart (that is, `save!`, `create!` and `update!`),
593+
which are stricter in that they raise an `ActiveRecord::RecordInvalid` exception
594+
when validation fails. A quick example to illustrate:
594595

595596
```ruby
596597
class User < ApplicationRecord
@@ -606,6 +607,16 @@ irb> user.save!
606607
ActiveRecord::RecordInvalid: Validation failed: Name can't be blank
607608
```
608609

610+
The `create` method always returns an object, regardless of
611+
its validity. You can then inspect this object for any errors.
612+
613+
```irb
614+
irb> user = User.create
615+
=> #<User:0x000000013e8b5008 id: nil, name: nil>
616+
irb> user.errors.full_messages
617+
=> ["Name can't be blank"]
618+
```
619+
609620
You can learn more about validations in the [Active Record Validations
610621
guide](active_record_validations.html).
611622

0 commit comments

Comments
 (0)