diff options
author | Richard Schneeman <richard.schneeman@gmail.com> | 2015-05-03 10:16:04 -0500 |
---|---|---|
committer | Richard Schneeman <richard.schneeman@gmail.com> | 2015-05-03 10:16:04 -0500 |
commit | eb3380f72ebb45a035d07f7d3919b5917726f12f (patch) | |
tree | dd1dcd29608ace0553d51616dc24ae0d9e83eb6a | |
parent | 5f844211bebc7a974dc3ff6d67901515369c1840 (diff) | |
parent | 16270eac7c3819e1273fef63290fdd84dfaa5797 (diff) | |
download | rails-eb3380f72ebb45a035d07f7d3919b5917726f12f.tar.gz rails-eb3380f72ebb45a035d07f7d3919b5917726f12f.tar.bz2 rails-eb3380f72ebb45a035d07f7d3919b5917726f12f.zip |
Merge pull request #19991 from mcfiredrill/nodoc-postgresql-change-column
`:nodoc:` postgresql's change_column
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb index 2a229ebf42..050b815aad 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb @@ -403,8 +403,7 @@ module ActiveRecord super end - # Changes the column of a table. - def change_column(table_name, column_name, type, options = {}) + def change_column(table_name, column_name, type, options = {}) #:nodoc: clear_cache! quoted_table_name = quote_table_name(table_name) quoted_column_name = quote_column_name(column_name) |