aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
diff options
context:
space:
mode:
authorGeorge Claghorn <george.claghorn@gmail.com>2018-08-14 21:27:44 -0400
committerGitHub <noreply@github.com>2018-08-14 21:27:44 -0400
commite715a64732f7b2f82aa809e59cfee83f892795f1 (patch)
treeb3f0749ed8a998284bbc4d2b22324d41c703c6ee /activerecord/lib/active_record/connection_adapters/abstract
parentd54435b6bc3d6a2d679ca3cdd9a2a20ea2887893 (diff)
parent50ac00cb73ff189794b5004085b76c81e131df6e (diff)
downloadrails-e715a64732f7b2f82aa809e59cfee83f892795f1.tar.gz
rails-e715a64732f7b2f82aa809e59cfee83f892795f1.tar.bz2
rails-e715a64732f7b2f82aa809e59cfee83f892795f1.zip
Merge pull request #33617 from bogdanvlviv/follow-up-33530
Follow up #33530
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/abstract')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
index fd9bf48ab5..4702de1964 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
@@ -980,9 +980,9 @@ module ActiveRecord
#
# remove_foreign_key :accounts, column: :owner_id
#
- # Removes the foreign key on +accounts.owner_id+. in a reversible manner
+ # Removes the foreign key on +accounts.owner_id+.
#
- # remove_foreign_key :accounts, column: :owner_id, to_table: :owners
+ # remove_foreign_key :accounts, to_table: :owners
#
# Removes the foreign key named +special_fk_name+ on the +accounts+ table.
#
@@ -991,7 +991,7 @@ module ActiveRecord
# The +options+ hash accepts the same keys as SchemaStatements#add_foreign_key
# with an addition of
# [<tt>:to_table</tt>]
- # The table contains the referenced primary key.
+ # The name of the table that contains the referenced primary key.
def remove_foreign_key(from_table, options_or_to_table = {})
return unless supports_foreign_keys?