Commit f0dbd60f9804394664618ed4f7ae886ad5c47660

Authored by Evandro Jr
1 parent b0b542b4

Added missing migration

db/migrate/20140505190749_add_paragraph_to_comments.rb 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +class AddParagraphToComments < ActiveRecord::Migration
  2 + def self.up
  3 + add_column :comments, :paragraph_id, :integer
  4 + end
  5 +
  6 + def self.down
  7 + remove_column :comments, :paragraph_id
  8 + end
  9 +end
... ...