• S
    Add a `required` option to singular associations · 00f55516
    Sean Griffin 提交于
    In addition to defining the association, a `required` association will
    also have its presence validated.
    
    Before:
    
    ```ruby
    belongs_to :account
    validates_presence_of :account
    ```
    
    After:
    
    ```ruby
    belongs_to :account, required: true
    ```
    
    This helps to draw a distinction between types of validations, since
    validations on associations are generally for data integrity purposes,
    and aren't usually set through form inputs.
    00f55516
singular_association.rb 1.1 KB