1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Make method as nodoc since we are already docummenting at AbstractAdapter

This commit is contained in:
Rafael Mendonça França 2015-03-31 13:27:51 -03:00
parent 4185e84e61
commit c8bd12cf5a

View file

@ -422,7 +422,7 @@ module ActiveRecord
end
# Changes the default value of a table column.
def change_column_default(table_name, column_name, default)
def change_column_default(table_name, column_name, default) # :nodoc:
clear_cache!
column = column_for(table_name, column_name)
return unless column