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

[ci skip] use false as value rather than symbol

This commit is contained in:
Akshay Vishnoi 2015-03-19 07:25:59 +05:30
parent c2152a0dd7
commit 64e27f9230

View file

@ -1496,7 +1496,7 @@ While Rails uses intelligent defaults that will work well in most situations, th
```ruby
class Customer < ActiveRecord::Base
has_many :orders, dependent: :delete_all, validate: :false
has_many :orders, dependent: :delete_all, validate: false
end
```