bievre_app/db/migrate/20160104101151_add_commentable_to_articles.rb
Caroline Girard dee35396f0 initial
2018-09-07 11:04:43 +02:00

7 lines
180 B
Ruby

class AddCommentableToArticles < ActiveRecord::Migration
def change
add_column :articles, :commentable, :boolean
add_column :articles, :show_comments, :boolean
end
end