aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Kadwill <tomkadwill@gmail.com>2014-07-28 15:46:57 +0100
committerTom Kadwill <tomkadwill@gmail.com>2014-07-28 15:46:57 +0100
commit9fb2fdc91370c3b5d3be93feef9fc5598a770028 (patch)
treec4dc1af30c6022adaa15ec85ce5682afb681844c
parentbf44fcc6c4af0807cdcb7d3e5567b0ec1f40cad5 (diff)
downloadrails-9fb2fdc91370c3b5d3be93feef9fc5598a770028.tar.gz
rails-9fb2fdc91370c3b5d3be93feef9fc5598a770028.tar.bz2
rails-9fb2fdc91370c3b5d3be93feef9fc5598a770028.zip
Added nodoc to change_table
-rw-r--r--activerecord/lib/active_record/migration/command_recorder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/migration/command_recorder.rb b/activerecord/lib/active_record/migration/command_recorder.rb
index c44d8c1665..5337106001 100644
--- a/activerecord/lib/active_record/migration/command_recorder.rb
+++ b/activerecord/lib/active_record/migration/command_recorder.rb
@@ -85,7 +85,7 @@ module ActiveRecord
alias :add_belongs_to :add_reference
alias :remove_belongs_to :remove_reference
- def change_table(table_name, options = {})
+ def change_table(table_name, options = {}) # :nodoc:
yield delegate.update_table_definition(table_name, self)
end