aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2015-04-12 18:17:31 -0700
committerZachary Scott <e@zzak.io>2015-04-12 18:17:31 -0700
commit93d2eeaad5f7e2a362297384fb840461980f675e (patch)
treecf6fb50a75ca1a5318313ed7857a59ea05ad5452 /activerecord/lib/active_record/associations.rb
parentda5fe3be1f31ec6ae695df0265506e2b2f954663 (diff)
downloadrails-93d2eeaad5f7e2a362297384fb840461980f675e.tar.gz
rails-93d2eeaad5f7e2a362297384fb840461980f675e.tar.bz2
rails-93d2eeaad5f7e2a362297384fb840461980f675e.zip
Apply edits from @senny to close #19397 [ci skip]
Diffstat (limited to 'activerecord/lib/active_record/associations.rb')
-rw-r--r--activerecord/lib/active_record/associations.rb5
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
#