From f0dbd60f9804394664618ed4f7ae886ad5c47660 Mon Sep 17 00:00:00 2001 From: Evandro Jr Date: Thu, 21 Aug 2014 14:13:54 -0300 Subject: [PATCH] Added missing migration --- db/migrate/20140505190749_add_paragraph_to_comments.rb | 9 +++++++++ 1 file changed, 9 insertions(+), 0 deletions(-) create mode 100644 db/migrate/20140505190749_add_paragraph_to_comments.rb diff --git a/db/migrate/20140505190749_add_paragraph_to_comments.rb b/db/migrate/20140505190749_add_paragraph_to_comments.rb new file mode 100644 index 0000000..facb91e --- /dev/null +++ b/db/migrate/20140505190749_add_paragraph_to_comments.rb @@ -0,0 +1,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 -- libgit2 0.21.2