You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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