: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.
This commit is contained in:
Tony Miller 2015-05-03 23:08:36 +09:00
parent 5f844211be
commit 16270eac7c

@ -403,8 +403,7 @@ def add_column(table_name, column_name, type, options = {})
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)