@@ -586,11 +586,12 @@ unique, is not already in the database, follows a specific format, and many
586
586
more.
587
587
588
588
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:
594
595
595
596
``` ruby
596
597
class User < ApplicationRecord
@@ -606,6 +607,16 @@ irb> user.save!
606
607
ActiveRecord::RecordInvalid: Validation failed: Name can't be blank
607
608
```
608
609
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
+
609
620
You can learn more about validations in the [ Active Record Validations
610
621
guide] ( active_record_validations.html ) .
611
622
0 commit comments