diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2013-10-02 15:43:50 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2013-10-02 15:43:50 -0700 |
commit | dca2fb368096735d18ea5b881e08816f7d552044 (patch) | |
tree | 1806f0d1be01db8912484eed31d0f03a6be34f17 | |
parent | d3089adb1a76d0d0446e914e972cf3ef49964333 (diff) | |
download | rails-dca2fb368096735d18ea5b881e08816f7d552044.tar.gz rails-dca2fb368096735d18ea5b881e08816f7d552044.tar.bz2 rails-dca2fb368096735d18ea5b881e08816f7d552044.zip |
goodbye has_and_belongs_to_many1, we will miss you!
-rw-r--r-- | activerecord/lib/active_record/associations.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index 09ed85ef24..5988af59d8 100644 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -1566,10 +1566,6 @@ module ActiveRecord scope = nil end - has_and_belongs_to_many1(name, scope, options, &extension) - end - - def has_and_belongs_to_many1(name, scope = nil, options = {}, &extension) builder = Builder::HABTM.new name, self, options join_model = builder.through_model |