20140505190749_add_paragraph_to_comments.rb 195 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 class AddParagraphToComments < ActiveRecord::Migration def self.up add_column :comments, :paragraph_id, :integer end def self.down remove_column :comments, :paragraph_id end end