* 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
5 lines
141 B
Ruby
5 lines
141 B
Ruby
class AddCommentTemplateToArticle < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :articles, :comment_template, :string
|
|
end
|
|
end
|