Flowdock
method

change_column_comment

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: AbstractMysqlAdapter
change_column_comment(table_name, column_name, comment_or_changes) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb, line 347
      def change_column_comment(table_name, column_name, comment_or_changes) # :nodoc:
        comment = extract_new_comment_value(comment_or_changes)
        change_column table_name, column_name, nil, comment: comment
      end
Register or log in to add new notes.