From 16270eac7c3819e1273fef63290fdd84dfaa5797 Mon Sep 17 00:00:00 2001 From: Tony Miller Date: Sun, 3 May 2015 23:08:36 +0900 Subject: `:nodoc:` postgresql's change_column Its nodoc'ed for the other implementations, and doc'ed in the base class, just like the other change_column* methods. --- .../active_record/connection_adapters/postgresql/schema_statements.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'activerecord/lib') 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) -- cgit v1.2.3