diff options
author | Tom Kadwill <tomkadwill@gmail.com> | 2014-07-28 15:46:57 +0100 |
---|---|---|
committer | Tom Kadwill <tomkadwill@gmail.com> | 2014-07-28 15:46:57 +0100 |
commit | 9fb2fdc91370c3b5d3be93feef9fc5598a770028 (patch) | |
tree | c4dc1af30c6022adaa15ec85ce5682afb681844c /activerecord/lib/active_record/migration | |
parent | bf44fcc6c4af0807cdcb7d3e5567b0ec1f40cad5 (diff) | |
download | rails-9fb2fdc91370c3b5d3be93feef9fc5598a770028.tar.gz rails-9fb2fdc91370c3b5d3be93feef9fc5598a770028.tar.bz2 rails-9fb2fdc91370c3b5d3be93feef9fc5598a770028.zip |
Added nodoc to change_table
Diffstat (limited to 'activerecord/lib/active_record/migration')
-rw-r--r-- | activerecord/lib/active_record/migration/command_recorder.rb | 2 |
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 |