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

5 lines
131 B
Ruby

class AddProcessedHtmlToArticles < ActiveRecord::Migration
def change
add_column :articles, :processed_html, :text
end
end