diff options
author | Zachary Scott <e@zzak.io> | 2015-04-12 18:17:31 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2015-04-12 18:17:31 -0700 |
commit | 93d2eeaad5f7e2a362297384fb840461980f675e (patch) | |
tree | cf6fb50a75ca1a5318313ed7857a59ea05ad5452 /activerecord | |
parent | da5fe3be1f31ec6ae695df0265506e2b2f954663 (diff) | |
download | rails-93d2eeaad5f7e2a362297384fb840461980f675e.tar.gz rails-93d2eeaad5f7e2a362297384fb840461980f675e.tar.bz2 rails-93d2eeaad5f7e2a362297384fb840461980f675e.zip |
Apply edits from @senny to close #19397 [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/associations.rb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index deecd1b7b7..c5c2178ee2 100644 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -1565,10 +1565,7 @@ module ActiveRecord # # class CreateDevelopersProjectsJoinTable < ActiveRecord::Migration # def change - # create_table :developers_projects, id: false do |t| - # t.integer :developer_id - # t.integer :project_id - # end + # create_join_table :developers, :projects # end # end # |