選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20170723112801_rename_comments_to_content.rb 133B

12345
  1. class RenameCommentsToContent < ActiveRecord::Migration[5.1]
  2. def change
  3. rename_column :comments, :comments, :content
  4. end
  5. end