diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-02-28 08:59:07 +0100 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-02-28 10:19:18 -0300 |
commit | 2e2f8c07d0ee9b209c35e41f69a44c50c501344a (patch) | |
tree | 866e872eaa7d1a81d38e63d7921912c6e483b04b /activerecord | |
parent | 9756aa640f505df35fbd829b5d938c4ed4a26e1e (diff) | |
download | rails-2e2f8c07d0ee9b209c35e41f69a44c50c501344a.tar.gz rails-2e2f8c07d0ee9b209c35e41f69a44c50c501344a.tar.bz2 rails-2e2f8c07d0ee9b209c35e41f69a44c50c501344a.zip |
Update docs, change_table does not use TableDefinition.
[ci skip]
Conflicts:
activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb index ddb6896257..6a5cff6acd 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb @@ -42,8 +42,8 @@ module ActiveRecord # Represents the schema of an SQL table in an abstract way. This class # provides methods for manipulating the schema representation. # - # Inside migration files, the +t+ object in +create_table+ and - # +change_table+ is actually of this type: + # Inside migration files, the +t+ object in +create_table+ + # is actually of this type: # # class SomeMigration < ActiveRecord::Migration # def up |