aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/builder/belongs_to.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2013-08-01 10:01:14 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2013-08-01 11:02:15 -0700
commit49d50b9d80957e53a72ba8ffa1dd51f1247610b5 (patch)
tree69be1991364dede566b0f98af2698bf8215319df /activerecord/lib/active_record/associations/builder/belongs_to.rb
parent35f94acf55f0d4dbcba747601434736685e9924f (diff)
downloadrails-49d50b9d80957e53a72ba8ffa1dd51f1247610b5.tar.gz
rails-49d50b9d80957e53a72ba8ffa1dd51f1247610b5.tar.bz2
rails-49d50b9d80957e53a72ba8ffa1dd51f1247610b5.zip
extract more mutations to the caller
Diffstat (limited to 'activerecord/lib/active_record/associations/builder/belongs_to.rb')
-rw-r--r--activerecord/lib/active_record/associations/builder/belongs_to.rb13
1 files changed, 6 insertions, 7 deletions
diff --git a/activerecord/lib/active_record/associations/builder/belongs_to.rb b/activerecord/lib/active_record/associations/builder/belongs_to.rb
index 0c3b3847cc..a4e314b7fb 100644
--- a/activerecord/lib/active_record/associations/builder/belongs_to.rb
+++ b/activerecord/lib/active_record/associations/builder/belongs_to.rb
@@ -12,17 +12,16 @@ module ActiveRecord::Associations::Builder
!options[:polymorphic]
end
- def build
- reflection = super
- add_counter_cache_callbacks(reflection) if options[:counter_cache]
- add_touch_callbacks(reflection) if options[:touch]
- reflection
- end
-
def valid_dependent_options
[:destroy, :delete]
end
+ def define_callbacks(reflection)
+ super
+ add_counter_cache_callbacks(reflection) if options[:counter_cache]
+ add_touch_callbacks(reflection) if options[:touch]
+ end
+
def define_accessors(mixin)
super
add_counter_cache_methods mixin