summaryrefslogtreecommitdiffstats
path: root/db/migrate/20170723112801_rename_comments_to_content.rb
blob: c522c3fad75ad1414cb23fc3fd0ee9ec08e9713a (plain)
1
2
3
4
5
6
7
# frozen_string_literal: false

class RenameCommentsToContent < ActiveRecord::Migration[5.1]
  def change
    rename_column :comments, :comments, :content
  end
end