docbrown/db/migrate/20190109212351_add_comment_template_to_article.rb
Ben Halpern d7665fcc3f
Add comment template to post (#1692)
* add myself to the core contributors

* add comment template

* merge upstream

* make sure the template re-appears for top level comments after submission

* make interface admin only

* Adjust comment template form

* Fix merge conflicts

* Remove unnecessary comment template from json
2019-01-30 13:32:34 -05:00

5 lines
141 B
Ruby

class AddCommentTemplateToArticle < ActiveRecord::Migration[5.1]
def change
add_column :articles, :comment_template, :string
end
end