docbrown/db/migrate/20170531151548_add_processed_html_to_comments.rb
2018-02-28 16:11:08 -05:00

6 lines
179 B
Ruby

class AddProcessedHtmlToComments < ActiveRecord::Migration
def change
add_column :comments, :body_markdown, :text
add_column :comments, :processed_html, :text
end
end