6 lines
179 B
Ruby
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
|