カラムのコメントを変更
説明
カラムのコメントを変更または削除
使い方
change_column_comment(テーブル名, カラム名, comment_or_changes)
例
カラムのコメントを変更
change_column_comment :posts, :state, from: "old_comment", to: "new_comment"
カラムのコメントを削除
change_column_comment :posts, :state, nil
カラムのコメントを変更または削除
change_column_comment(テーブル名, カラム名, comment_or_changes)
change_column_comment :posts, :state, from: "old_comment", to: "new_comment"
change_column_comment :posts, :state, nil