diff options
author | Pratik Naik <pratiknaik@gmail.com> | 2008-06-11 12:39:56 +0100 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2008-06-11 12:39:56 +0100 |
commit | 71bf756ea21f338771b53d02951d6654bd295649 (patch) | |
tree | ffb56f79a6c3230028e2ecc3fcd221f42ca670f0 /activerecord | |
parent | 7f140bbddaf70abc61570f6cfdcbfba5771ffc78 (diff) | |
download | rails-71bf756ea21f338771b53d02951d6654bd295649.tar.gz rails-71bf756ea21f338771b53d02951d6654bd295649.tar.bz2 rails-71bf756ea21f338771b53d02951d6654bd295649.zip |
Disable validations for associated belongs_to record by default
Diffstat (limited to 'activerecord')
-rwxr-xr-x | activerecord/lib/active_record/associations.rb | 2 | ||||
-rw-r--r-- | activerecord/test/models/developer.rb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index cbdb145078..fc186f806c 100755 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -940,7 +940,7 @@ module ActiveRecord ) end - add_single_associated_save_callbacks(reflection.name) unless options[:validate] == false + add_single_associated_save_callbacks(reflection.name) if options[:validate] == true configure_dependency_for_belongs_to(reflection) end diff --git a/activerecord/test/models/developer.rb b/activerecord/test/models/developer.rb index 7a64bed5ff..9f26cacdec 100644 --- a/activerecord/test/models/developer.rb +++ b/activerecord/test/models/developer.rb @@ -56,8 +56,8 @@ class Developer < ActiveRecord::Base end class AuditLog < ActiveRecord::Base - belongs_to :developer - belongs_to :unvalidated_developer, :class_name => 'Developer', :validate => false + belongs_to :developer, :validate => true + belongs_to :unvalidated_developer, :class_name => 'Developer' end DeveloperSalary = Struct.new(:amount) |