summaryrefslogtreecommitdiffstats
path: root/db/migrate/20170723112801_rename_comments_to_content.rb
blob: 6c014286d134b7dd0267c7eba9ae725c08aa4da3 (plain)
1
2
3
4
5
class RenameCommentsToContent < ActiveRecord::Migration[5.1]
  def change
    rename_column :comments, :comments, :content
  end
end