From 6ffce1791ab989afb0f3bc1dd579804fc9a5c756 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Thu, 8 May 2014 09:51:48 -0700 Subject: set a constant for the "anonymous" habtm model fixes #15022 I wanted the middle model to be anonymous, but we have to give it a name for marshal support. :'( --- activerecord/lib/active_record/associations.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'activerecord/lib') diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index ac1479ad8f..d66a79a137 100644 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -1576,6 +1576,11 @@ module ActiveRecord join_model = builder.through_model + # FIXME: we should move this to the internal constants. Also people + # should never directly access this constant so I'm not happy about + # setting it. + const_set join_model.name, join_model + middle_reflection = builder.middle_reflection join_model Builder::HasMany.define_callbacks self, middle_reflection -- cgit v1.2.3